Réponse apportée
Combining multiple MATLAB figures in one plot
Hi, You can utilize “openfig()” for the purpose of opening a figure. “openfig()” by default opens the figure. The below a...

plus de 5 ans il y a | 1

Réponse apportée
Read multiple txt files and plot all in one graph
Hi, I have updated your callback function. When the first file is selected, as the “Data” property of “app.UITable” will be ...

plus de 5 ans il y a | 1

Réponse apportée
How to solve the font of the property inspector is too small in Matlab 2019a?
Hi, To change the font size of the property inspector, you will have to change the font size in your Windows operating system...

plus de 5 ans il y a | 0

Réponse apportée
Matrix compare and unkonw relationships to find
Hi, You can use “corr()” function to find the relationship between columns of 2 matrices. Here, as you want to find the cor...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
how to use string to define function and use to store parameters whose values are constants but requires in different sub function?
Hi, Can you be a bit more descriptive in what you are trying to achieve. To define a function as a string you can use "str2f...

presque 6 ans il y a | 0

Réponse apportée
Getting a command like gather to run silently
Hi, The “evalc()” function can be used to suppress the output from a matlab expression and capture it in a variable. The...

presque 6 ans il y a | 0

Réponse apportée
테이블 데이터 수정작업 할때 (For Type of Table)
Hi, In the table “a.mat” and “Modified_a.mat” , the data type of the third column “Var3” is “double”. So, changing a value...

presque 6 ans il y a | 0

Réponse apportée
Warning Message during Output
Hi, All Warnings can be turned off by : warning off; % or by warning(‘off’, ‘all’); % Although it is advised not to...

presque 6 ans il y a | 0

Réponse apportée
Creating iddata from data in tables
Hi, Instead of indexing based on paranthesis “()” you can use curly braces “{}” to extract the cell array within the table....

presque 6 ans il y a | 0

| A accepté

Réponse apportée
Multivariate Statistical analysis, regression? correlation?
The best approach would be to use Correlation when analyzing effect of a specific variable on another variable. The function ...

presque 6 ans il y a | 0

Réponse apportée
Multivariate Statistical analysis, regression? correlation?
The best approach would be to use Correlation when analyzing effect of a specific variable on another variable. The function ...

presque 6 ans il y a | 0

Réponse apportée
How do I move a SVM model from Matlab to VBA?
To extract Weight_Vector from SVM Model : Weight_vector = SVMModel.Alpha' * SVMModel.SupportVectors; % To extract Bias ...

presque 6 ans il y a | 0

| A accepté

Réponse apportée
Getting error for NVIDIA CudNN with Matlab 2019b in Windows 10
Ensure that cuDNN library is installed in the correct directory. Check Nvidia’s official documentation for installing in Windo...

presque 6 ans il y a | 0

Réponse apportée
Outputting arrays to a JSON file
MATLAB has a built in function called “jsonencode()” to convert a struct to a JSON string. Also, when writing into a file ...

presque 6 ans il y a | 1