Beantwortet
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...

mehr als 5 Jahre vor | 1

Beantwortet
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 ...

mehr als 5 Jahre vor | 1

Beantwortet
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...

mehr als 5 Jahre vor | 0

Beantwortet
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...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
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...

fast 6 Jahre vor | 0

Beantwortet
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...

fast 6 Jahre vor | 0

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

fast 6 Jahre vor | 0

Beantwortet
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...

fast 6 Jahre vor | 0

Beantwortet
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....

fast 6 Jahre vor | 0

| akzeptiert

Beantwortet
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 ...

fast 6 Jahre vor | 0

Beantwortet
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 ...

fast 6 Jahre vor | 0

Beantwortet
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 ...

fast 6 Jahre vor | 0

| akzeptiert

Beantwortet
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...

fast 6 Jahre vor | 0

Beantwortet
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 ...

fast 6 Jahre vor | 1