Answered
LaTeX interpreter is not working correctly with code including subscripts in Control System Toolbox legends
This is Not a Bug. In LaTeX, A_bc will only treat b as a subscript. In order to include multiple symbols in a subscript (or supe...

3 years ago | 1

Answered
add columns to matrix
In general you can use blkdiag. A=[1 2 3 6 ]; B=[4 5 5 6 9 8 7 6 9 6 8 6 9]; D=[4 1 2 3 5 68 9 6 9 6 9 6 9 6 9 63 45 82 85 96...

3 years ago | 0

| accepted

Answered
How can I edit code so only bottom graph is displayed.
The histcounts function does not return an object with properties like the histogram function does, but the outputs from histcou...

3 years ago | 0

Answered
Plotting a multi-dimensional matrix
In MATLAB select the Plots tab on the Toolstrip. Click the small downward pointing triangle to the right side of the Plots secti...

3 years ago | 1

Answered
Detect and remove outliers in signals
You could try filling the outliers with NaN values (or some other method) using the filloutliers function. x = [1 2 99 4 5] fi...

3 years ago | 0

Answered
Matlab 2020a doesn't find complier when it did with 2017a
According to the Supported Compilers column entry for release R2020a on the Previous Releases system requirements page Windows S...

3 years ago | 0

Answered
When will Ubuntu 22.04 be supported?
Ubuntu 22.04 LTS is not listed on the Platform Road Map. Therefore as far as I'm aware we have not announced when or if this OS ...

3 years ago | 0

Answered
find(V==max(V),1,'first') returns index that is way beyond the first index where X reaches the maximum
What are the sizes of the variables involved in creating your plot above, and what is the exact syntax for the plot function tha...

3 years ago | 0

Answered
How to plot and save the content of a 5D array?
Is your main question how to assemble the file name? I'd use a string array. n = 1; p = 42; q = 999; filename = "part" + n +...

3 years ago | 0

| accepted

Answered
Missing Simscape examples in R2022a
If you're trying to open this example, that example is part of the Simscape Electrical product. The output of ver that you've sh...

3 years ago | 0

| accepted

Answered
Datetime errors when I import data
When you selected options in the Import Tool, you told it that you wanted it to import your Scadenza data as a datetime array. B...

3 years ago | 1

Answered
Saving Each Table Within a Structure as its Own Entity
So if I understand what you want to do correctly, you have a vector of identifiers and an array or a table of data: rng default...

3 years ago | 0

Answered
How do I activate a license on an off-site machine?
Is the off-site laptop able to access the internet? If not the documentation includes instructions on how to activate an install...

3 years ago | 0

Answered
Using logical index matrix to create another matrix with values
What do you want the elements that did not satisfy the condition in your original matrix to be in the new matrix? You can't have...

3 years ago | 1

| accepted

Answered
How to get variable r recognised when inputting a matrice? eg matrix1 = [1, 0; 2/r, 1]
Another approach, one that doesn't require Symbolic Math Toolbox, is to create a function that you can call with a specific valu...

3 years ago | 0

Answered
How do I automatically delete a file after the variables needed has been extracted.
You could delete the files one at a time, or if you are careful you could delete them with one delete call at the end of your co...

3 years ago | 0

| accepted

Answered
Replacing Values in Matrix that are not equal to 1 while excluding 'NaN'
There are a couple different approaches you can use. With just one dividing level I'd probably just use two logical operations a...

3 years ago | 1

Answered
how to calculate functions
You don't need the line of code where you define t as a symbolic variable, since on the next line you throw that symbolic variab...

3 years ago | 0

Answered
How to find which of my computers have Matlab installed?
See this Answers post for instructions on how to deactivate MATLAB on a machine that you cannot access.

3 years ago | 0

Answered
Select data from timetable according to date and time
If you want to determine if the time portion of a datetime falls in a certain window (regardless of the date portion) I recommen...

3 years ago | 0

Answered
Not all graphs appear at the same time
%%%%%Condiciones iniciales Phi=0.95; n=50; P0=1; x0=sqrt(P0)*randn(1,1); Q0=0.1; w0=sqrt(Q0)*randn(1,1); x(1)=Phi*x0+w0; ...

3 years ago | 0

Answered
How can I get permutations of a vector satisfying the given condition?
My first thought would be to construct a digraph from your data then try to find Hamiltonian paths in that digraph. Or there may...

3 years ago | 0

Answered
How do I set coefficient variables in Fittype that was generated in Fitting toolbox?
On the documentation page for the fittype function, see the "Use Anonymous Functions to Work with Problem Parameters and Workspa...

3 years ago | 0

Answered
Calculating the value, excluding nan
Consider storing your data in a timetable array, with the dates associated with your data stored as a datetime array. If you do ...

3 years ago | 0

Answered
Function listed in Data Acquisition Toolbox is not available after installing toolbox
According to the information at the end of the documentation page for the tdmsinfo function in Data Acquisition Toolbox, it was ...

3 years ago | 1

| accepted

Answered
question about command 'mat2cell'
Use repmat to build your vector of tile heights or widths. A = ones(8); n = 2; v = repmat(n, 1, 4) % You could compute the 4 ...

3 years ago | 0

Answered
Getting the error. "index exceeds the number of array elements".
When i is 2, you assign to h(2) but then on the next line you attempt to access h(3). That element doesn't exist yet. I suggest...

3 years ago | 0

| accepted

Answered
Function call another function
If you only want functions in the directory containing your main file1 and file2 functions to be able to call your helpers, cons...

3 years ago | 0

Answered
How do I assign result array of a loop to a variable name?
Can you dynamically create variables with numbered names like uniqueCost1, uniqueCost2, uniqueCost3, etc.? Yes. Should you do t...

3 years ago | 0

| accepted

Answered
download the projects in examples
If you have the products that contain those examples installed and licensed (and are using a release that is the one in which th...

3 years ago | 0

| accepted

Load more