답변 있음
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...

거의 4년 전 | 1

답변 있음
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 ...

거의 4년 전 | 1

답변 있음
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...

거의 4년 전 | 0

답변 있음
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...

거의 4년 전 | 0

| 수락됨

답변 있음
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...

4년 초과 전 | 0

답변 있음
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...

4년 초과 전 | 0

답변 있음
테이블 데이터 수정작업 할때 (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...

4년 초과 전 | 0

답변 있음
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...

4년 초과 전 | 0

답변 있음
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....

4년 초과 전 | 0

| 수락됨

답변 있음
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 ...

4년 초과 전 | 0

답변 있음
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 ...

4년 초과 전 | 0

답변 있음
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 ...

4년 초과 전 | 0

| 수락됨

답변 있음
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...

4년 초과 전 | 0

답변 있음
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 ...

4년 초과 전 | 1