Question


Removing the suffix from a variable name
I have many variables all called something like A_YYY where YYY can be any combination of characters and numbers of different le...

environ un an il y a | 1 réponse | 0

1

réponse

Question


Replacing values in array with values from another array
The values in each row of an array correspond to the values i, j of an upper triangular array. How do I return a vector with ele...

environ un an il y a | 1 réponse | 0

1

réponse

Question


Replacing elements in a vector
The values of an array match the index of elements in a vector. For example, the value of 5 in array1 below corresponds to whate...

environ un an il y a | 2 réponses | 0

2

réponses

Question


How do you get all pairs without double counting?
Given, say, 10 numbers, how do you get all possible pairs between the numbers without double counting? Order doesn't matter, so ...

environ un an il y a | 1 réponse | 0

1

réponse

Question


Geometric mean with logarithmically spaced data?
This is partly a Matlab question, partly conceptual. I generated three vectors with logarithmically spaced numbers using logspac...

environ un an il y a | 1 réponse | 0

1

réponse

Question


Error when taking the continuous time Fourier transform
I am trying to figure out what the error is associated with taking a Fourier transform. I have a 1D vector A of 130 elements and...

environ un an il y a | 1 réponse | 0

1

réponse

Question


Documentation for mean function
I have a 200×1 cell array where each element is {130×1 double}. I want the mean for all the first elements in the 200 cells, all...

environ un an il y a | 1 réponse | 0

1

réponse

Question


Averaging elements for a cell within a cell array
I have a 200×1 cell array where each element is {130×1 double}. How do I take the mean of every element in each cell-within-the...

environ un an il y a | 3 réponses | 0

3

réponses

Question


Symbolic expression for exponential decay
To calculate an exponential decay with a single constant , , why do you need to multiply the following by a heaviside function a...

environ un an il y a | 1 réponse | 0

1

réponse

Question


Applying an anti-aliasing filter
I've been trying to understand how to design and implement an anti-aliasing filter. I'm really stuck. I have an analytic functio...

environ un an il y a | 1 réponse | 0

1

réponse

Question


Using the lowpass function
In using the lowpass function, how can you suppress the display after? (The default implementation outputs plots of the time-dom...

environ un an il y a | 2 réponses | 0

2

réponses

Question


Anti-aliasing filter design
Can you use the lowpass function as an anti-aliasing filter, or is there some preferrable way to do it such as using the butter ...

plus d'un an il y a | 2 réponses | 0

2

réponses

Question


How do you determine the arguments to the `buttord` function?
This is more of a conceptual question -- there are examples on the page for this function, but how do you select what the passba...

plus d'un an il y a | 1 réponse | 0

1

réponse

Question


How do you calculate a correlation function in MATLAB?
I am trying to calculate the correlation function given by where I sum over all i ("part" in the following). Do I just choose...

plus d'un an il y a | 1 réponse | 0

1

réponse

Question


Error with pinv in MATLAB r2018a
I am taking the pseudoinverse of a matrix using pinv but get the following error: Error using svd SVD did not converge. E...

plus d'un an il y a | 1 réponse | 0

1

réponse

Question


How do you build multiple cell arrays from the columns of an array?
Given an m x N array of type double, how do you separate the columns into cells so that you have N, m x 1 cell arrays?

plus d'un an il y a | 1 réponse | 0

1

réponse

Question


Using vertcat for cell array of differing length
I have a 3 x 2 cell array consisting of elements that are vectors 1 x N where N changes. How do I find the vector of minimum len...

plus d'un an il y a | 1 réponse | 0

1

réponse

Question


How do you average vectors in a cell array?
A cell array of vectors of type double, say: 1 x 10000 1 x 10000 1 x 10000 How do you average the values into one array ...

plus d'un an il y a | 1 réponse | 0

1

réponse

Question


What determines the maximum frequency when taking the FFT?
This is part conceptual, part MATLAB, but how do you set the maximum frequency when taking the FFT of a signal? According to the...

plus d'un an il y a | 2 réponses | 0

2

réponses

Question


Taking the fft of a signal sampled above the Nyquist rate but getting strange results
I have been trying to reproduce a frequency domain function from a time domain signal, but getting nothing like what I expect. ...

plus d'un an il y a | 1 réponse | 0

1

réponse

Question


Trying to understand the single-sided FFT
For a single-sided FFT, is it correct to multiply the FFT by 2, if so why? Also, I have seen some examples that take the absolut...

plus d'un an il y a | 4 réponses | 0

4

réponses

Question


Adding nodes from a sub-graph to a larger graph
I have an adjacency matrix for a graph consisting of 10 nodes and the edges between them. But they are part of a larger graph, a...

plus d'un an il y a | 1 réponse | 0

1

réponse

Question


Setting elements of an array to be zero based on the values of a vector
I want to take the matrix A (as an example) and set all elements of A that have either their row and/or column as a value in B t...

plus d'un an il y a | 4 réponses | 0

4

réponses

Question


Setting an element of an array to zero based on the values of a vector
Given a 2D array with elements a(i,j), if either i or j matches any element in another vector, how do you set the value for that...

plus d'un an il y a | 1 réponse | 0

1

réponse

Question


Finding elements common to both arrays
Given A = [1 2 3 6 7 9 10]; B = [4 7 8 10]; How would I determine that 7 and 10 are common to both vectors? find(ismem...

plus d'un an il y a | 1 réponse | 0

1

réponse

Question


How do you set the x axis ticks / labels to be equal to the y axis ones?
I thought I could do this by the following, but it's not working: ax1 = gca; set(ax1,'XTick',get(ax1,'YTick')); Instead, ...

plus d'un an il y a | 2 réponses | 0

2

réponses

Question


Finding characters in a string / filename
How would I return as a double the number after the letter in the following file name? For instance, in the following, I would l...

plus d'un an il y a | 1 réponse | 0

1

réponse

Question


Finding the number of edges per each node in a graph
How do you find the number of edges per each node in an undirected graph? The following isn't quite what I want as it double cou...

plus d'un an il y a | 1 réponse | 0

1

réponse

Question


Alternative to writecell?
The function writecell was introduced in R2019a to write the contents of a cell array to a file. What would be the previous way ...

plus d'un an il y a | 1 réponse | 0

1

réponse

Question


Keeping the rows in an array with specified numbers
I want to keep the part of the array with specified numbers in column 2. This deletes the rows in the array with the specified n...

plus d'un an il y a | 1 réponse | 0

1

réponse

Charger plus