0
votes
1answer
46 views

declaring that a value belongs to some range in matlab

I have a task to calculate some f(x) function in which x belongs to [-4,4] range and h=0.5. At first I tried to write x=rand*(4-(-4))+(-4)) but then I guessed that I was doing wrong and I needed a ...
0
votes
2answers
31 views

Matlab vector assistance

I am trying to create a column vector in matlab based on two 64x64 double vectors, and iterate through each element in the vector and apply an equation to create a new vector, which will then be ...
1
vote
2answers
21 views

Symbolic function for a vector

I want to define a symbolic vector in Matlab, but every element of the vector should be created through a symbolic function. Let's say f(x)=x^2 is my function and I have a vector A=[1 2 3 4 5]. I ...
0
votes
1answer
30 views

What is the correct way to implement this loop that will average values with a changing counter?

I have looked thoroughly on the internet for an answer to this question, but it seems to be too specific for an answer anywhere else. This is my last stop. To preface, this is not a homework problem, ...
0
votes
1answer
24 views

Plotting MATLAB values in two different colors

Anyway, I wish to plot two column vectors, filled with random numbers with no negative values in them, on a 2D plot(x and y). The 'x-vector' I can leave as it is, but with the 'y vector', I wish to ...
3
votes
2answers
64 views

Concatenate every n-th row

I got a data set in a matrix like the following (imported from Excel): matrix = Cat1 1 2 3 4 Cat2 9 10 11 12 Cat3 17 18 19 20 Cat1 5 6 7 8 Cat2 13 14 15 16 Cat3 ...
-3
votes
1answer
18 views

MATAB access of each binary value of column vector [closed]

I have a vector dta of values read in with the fread function. I can use dta(28:44) to, for example, access the values of elements 28, 29, ..., 44. However, I want to get the binary representation ...
3
votes
1answer
43 views

Turn 2 coordinates vectors into matrix, matlab

I have 2 vectors, one call X and enother calls Y. In X I have the x coordinate, and in Y the y coordinates. The first coordinate in X and the first in Y give a point, and so on.. The numbers in each ...
0
votes
1answer
39 views

Data analysis Matlab/Excel

I have a data clustering problem. I have a series of events labeled by timestamps and I am trying to count how many events is in each 15 (also 30) minute blocks. I am doing this in excel with pivot ...
0
votes
0answers
37 views

How to calculate conditional sum of a part of vector/array based on a 2nd array/vector - Matlab [closed]

I want to get the conditional sum of part of a vector based on a second vector. For example: A = [143 14 -4 299 -29 83 151 190 178 -61 -109 ] and B = [1 1 -1 1 -1 1 1 1 1 -1 -1 ] then I want to ...
0
votes
1answer
39 views

How to Sum through Vectors elements

I have a variable quantity that contains two vectors. I want to sum these quantity from i = 1 to n, where n = 100. When the program is ran, I can click on the variables in the work space to see the ...
-1
votes
0answers
51 views

How to find the angles using euler angles in Matlab [closed]

Using Matlab: I have two base orthonormal bases and I need to find the rotation angle over every axes to go from the first to the second one. These are my base vectors: E1 = [-0.7969 0.1778 ...
2
votes
4answers
47 views

Matrix conversion in MatLab

I have a sample matrix in MatLab >> A=[0 0 0 0; 5 1 4 6; 10 87 74 34] A = 0 0 0 0 5 1 4 6 10 87 74 34 and I want to create a new vector which ...
0
votes
1answer
24 views

evaluating a self made function for a cector and then plotting in matlab

i have created a function that represents a triangle sign. this function does not work on vectors. i want to evaluate a vector x: x=[-2:0.01:2] and save the answer in vector y, for this purpose i ...
2
votes
1answer
49 views

Unbalanced or unexpeced parenthesis or bracket MATLAB

I was trying to break a matrix into column vectors using the following command: z = data(:, 3); But, I keep on getting an error "Unbalanced or unexpected parenthesis or bracket" My matrix data ...
0
votes
2answers
71 views

Trying to get a orthogonal base using matlab with gram-schmidts method [closed]

Im trying to use gram-schmidt to find a orthogonal base. e1 is orthogonal to e2 and e3, but in this case e2 = -e3. What could be wrong? Heres my code so far: calca = [424 293 123; 431 258 109; 446 ...
0
votes
1answer
28 views

Saving while-loop data into vector

I have this while loop which works well and gives the correct output data but as it ends it only saves the latest datapoint, how can I save every loopdata into a vector? t0=0.15; % Initial time ...
0
votes
1answer
64 views

matlab column and row element summation using a for loop

I need to wire an algorithm for class without using any Matlab functions and using for and while loops, that gives me two new vectors one with the sum of elements of each column, and another with the ...
0
votes
2answers
34 views

2-column matrix from 2 vectors in MATLAB

This feels like it should be simple. I am building a minimum distance classifier and I want to put feature1 and feature2 into the same matrix so that I can call them and get answers like this. ...
-3
votes
1answer
54 views

Matlab: How to type vector from loop? [closed]

I have variables: f0=100; N=5; Then I typed this loop: f=zeros(size(2*N+1)); for j=1:2*N+1 n= j-(N+1); if n==0 f(j)=f0/2; else f(j)=f0*( ...
0
votes
1answer
29 views

how to threshold/filter a vector? [duplicate]

I have a vector containing a list of data (X and Y coords) which i want to compare to an array of 100 vectors (each with similar but not the same XY Coords) in order to find a match. Each vector ...
0
votes
1answer
53 views

Octave and Matlab “wat” matrix/vector inconsistencies

I've noticed various cases in Matlab and octave where functions accept both matrices and vectors, but doesn't do the same thing with vectors as it does with matrices. This can be frustrating because ...
0
votes
3answers
56 views

Why do i get this error - MATLAB

I have the image and the vector a = imread('Lena.tiff'); v = [0,2,5,8,10,12,15,20,25]; and this M-file function y = Funks(I, gama, c) [m n] = size(I); for i=1:m for j=1:n J(i, j) = ...
2
votes
2answers
45 views

Generate 2^N-1 number of matrices from a MXN matrix

I need to generate all possible combinations of a 10X5 matrix. What I need is all 10X1 matrix, 10X2 matrix, 10X3 matrix etc. What' the most efficient way. i can use multiple loops but that would be ...
0
votes
2answers
35 views

toc vector in GUI Matlab

I have created a GUI, using GUIDE. I have added pushbuttons which perform a task. The start button, plots a graph and plays a wavefile that I have assigned to it. in the start button I have added as ...
0
votes
2answers
81 views

Matlab: how to write a vector of a few points as a continuous function?

I have two vectors: x = [0; 1; 2] y = [2.0000; 0; -14.7781] If I will plot x and y I will see three points on the xy-plane. But I want to connect those three points and get them as a continuous ...
1
vote
2answers
40 views

Create several gapless matrices (or a structure) out of one dataset with gaps in Matlab

I have some data with gaps in the time series. The indices of the gaps are found and also length and everything. The thing is that I would like to chop up my data (coulumns: time and measurements) ...
2
votes
2answers
67 views

Slice numpy matrix using vectors as indices

Suppose we have a matrix s of size 639 by 668, this matrix is fully composed by values of -1. We want to access and replace a section of 28X28 (e.g., Top-left corner), leaving a border of -1 around ...
1
vote
1answer
38 views

Split a vector according to a defined sequence

Can anyone suggest a way in which it is possible to perform operations on a vector according to a predetermined sequence - for example I have a vector of different values, M, which is <8760x1> in ...
0
votes
1answer
55 views

How to add a repeating pattern to vector with different length in Matlab

Question Suppose I have two vectors of arbitrary length. Lets call one pattern and the other series. Now I want to add my repeated pattern to my series in an automatic way. Typically one can assume ...
0
votes
2answers
80 views

Matlab: Add vectors not in the same length to a matrix

Is it possible to automatically add vectors that are not in the same length together for a matrix? i.e: a = [1 2 3 4] b = [1 2] How can I make C to be: c = [1 2 3 4 ; 1 2 0 0] or c = [1 2 3 4 ...
2
votes
2answers
48 views

Legend gives too much data in matlab

How can I restrict my legend in Matlab? So far I'm plotting a graph with code like so: figure; hold on; plot(log(X),7.35,'ro',7.35,log(Y),'bo'); axis([7.3 7.7 7.3 7.7]); set(gca,'xtick',[7:0.1:7.7]) ...
0
votes
1answer
56 views

How to interpolate vector in Matlab?

I've got these known variables: T=3; t=0:0.01:5*T; om=2*pi/T; N=10; f0=100; where: T = period, t = variable time, om = angular frequency, N = number ...
3
votes
6answers
94 views

What's the most idiomatic way to create a vector with a 1 at index i?

In Matlab, suppose I would like to create a 0-vector of length L, except with a 1 at index i? For example, something like: >> mostlyzeros(6, 3) ans = 0 0 1 0 0 0 ...
1
vote
2answers
39 views

What are some (matlab) methods I should become familiar with for working with vectors (specifically complex numbers) [closed]

Apart from the obvious ones, like real() etc, what are some of the methods I should become familiar with? Oh, I am doing Electronics Engineering, so topic specific would be great.
0
votes
2answers
58 views

MATLAB: Starting with a vector of starting points and a vector of end points, make runs of consecutive numbers between these points [duplicate]

This is probably simple but here is my problem. I have two vectors, starts and ends. Starts are the starting points of sequences of consecutive numbers and ends are the end points of sequences of ...
0
votes
1answer
53 views

How can I join two variables into one taking values one by one?

How can I join two variables into one variable taking values by turn, in Matlab? Namely, taking one from the first, then one from the second, then again from the first... For example, to join 1 2 3 ...
1
vote
3answers
82 views

Comparing two sets of vectors

I've got matrices A and B size(A) = [n x]; size(B) = [n y]; Now I need to compare euclidian distance of each column vector of A from each column vector of B. I'm using dist method right now Q = ...
0
votes
1answer
39 views

Renumber element in perm matrix MATLAB

I have a 1 x 9 matrix: D = [6 5 2 9 8 4 3 1 7]; But I want to renumber it from 1 - 9 to 4 - 12. So at the end, I will have something like this D = [9 8 5 12 11 7 6 4 10] Is there any possible ...
0
votes
1answer
84 views

I need help setting up the correct frequency vector

I have a wave of frequency 100 Hz (it is a set of data). I would like to plot the amplitude and the phase angle vs frequency. This is what I do but my amplitude shows at the wrong frequency, what am I ...
1
vote
3answers
122 views

In matlab finding similar elemants in vectors of unequal length within a tolerance

I have two column vectors of unequal lengths, calib (75 elements) and nu (1436 elements). I need to find the elements in nu that match the elements in calib to within a tolerance of 0.001, then ...
0
votes
2answers
82 views

Concatenation of Vectors in MATLAB

I have these 10 vectors in MATLAB, mean(alltmws{l}'), where l is from 1 to 10. The size of each of these vectors is 1X10001. Now I want to store all these values in one vector, one after the other, ...
3
votes
3answers
93 views

Matlab: Getting Random values from each column w/o zeros

I have a 2d matrix as follows: possibleDirections = 1 1 1 1 0 0 0 2 2 0 3 3 0 0 0 0 4 0 4 4 5 5 5 5 5 I need ...
0
votes
1answer
28 views

access to values in vector in matlab [duplicate]

I have a Nx2 vector, each row in the vector is a coordinate in a matrix. For example: vector that call Path look like this: Path=[1 2; 3 4; 5 6; 7 8;]; My question is how can I access the vector ...
0
votes
2answers
111 views

implementing matlab function in c++ using Intel C++ compiler

I have developed a MATHLAB program with visual c++ i am using IntelĀ® Integrated Performance Primitives because speed of program is important issue and i have done a lot of efforts for implementing ...
0
votes
0answers
121 views

make 100 runs on random numbers matrix

This is sort of continue from here .I want to make for example 100 runs in the below code to proceed the simulation. The user vector is a 1x6 vector with numbers.I want to compare that with the ...
1
vote
1answer
211 views

Assign vector elements to matrix by coordinates MATLAB

I have a vector of values which i want to assign to a NxN matrix. The vector values correspond to the lower half of the matrix,but the matrix is symmetric. The problem is that the vector values are ...
-3
votes
3answers
34 views

Adding pixels to a vector

I have the following function in matlab. function s = value(x, y) for i=1:length(y) for j=1:length(y) if y(i,j) ~= 0.5; pixels ...
0
votes
1answer
43 views

matlab vector output

Well I try to make vector output with this code. Just some function which results i need to get in vector form function [smthOut] = myErf(start, wstep, final) for k = start:wstep:final ...
0
votes
2answers
38 views

How to perform a conditional assignment on each element of the vector

I have a function like this: y=-2 with x<=0 y=-2+3x^2 with 0=1 I need to compute this function on each element of the 1D matrix, without using a loop. I thought it was possibile ...

1 2 3 4 5 6