回答済み
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...

6年弱 前 | 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 ...

6年弱 前 | 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...

6年弱 前 | 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...

6年弱 前 | 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...

約6年 前 | 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...

約6年 前 | 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...

約6年 前 | 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...

約6年 前 | 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....

約6年 前 | 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 ...

約6年 前 | 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 ...

約6年 前 | 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 ...

約6年 前 | 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...

約6年 前 | 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 ...

約6年 前 | 1