Feeds
已回答
Run a gui from a .mat file, save the variables from that gui and use them in the .mat code.
I'm not sure to understand what you want to do, but a GUI function works like any other function. You can call it in function/sc...
Run a gui from a .mat file, save the variables from that gui and use them in the .mat code.
I'm not sure to understand what you want to do, but a GUI function works like any other function. You can call it in function/sc...
10 years 前 | 0
已回答
To sum functions which have two unknowns and finding the min values of these unknowns
I propose : Create a function: function F = myFunc(xy,t, BS, r) F = 0; for m=1:4 F = 2*r(ti,m)+hypot(xy...
To sum functions which have two unknowns and finding the min values of these unknowns
I propose : Create a function: function F = myFunc(xy,t, BS, r) F = 0; for m=1:4 F = 2*r(ti,m)+hypot(xy...
10 years 前 | 0
已回答
colormap and GUIDE using axes components
You should look at this : <http://www.mathworks.com/matlabcentral/answers/101346-how-do-i-use-multiple-colormaps-in-a-single-...
colormap and GUIDE using axes components
You should look at this : <http://www.mathworks.com/matlabcentral/answers/101346-how-do-i-use-multiple-colormaps-in-a-single-...
10 years 前 | 0
已回答
how to rotate a image in gui?
However the function 'rotate' exist in matlab 2014. doc rotate
how to rotate a image in gui?
However the function 'rotate' exist in matlab 2014. doc rotate
10 years 前 | 0
已回答
User authentication in matlab GUI
Des sujet en parle déjà : http://www.mathworks.com/matlabcentral/answers/20400-encryption-of-password Sinon, j'ai aussi trouv...
User authentication in matlab GUI
Des sujet en parle déjà : http://www.mathworks.com/matlabcentral/answers/20400-encryption-of-password Sinon, j'ai aussi trouv...
10 years 前 | 0
| 已接受
已回答
Why I got the following error when I run the ".exe" file compiled by matlab 2012b?
I'm not sure that you can create an *.exe file with only a function. I think that you have to compile a script.
Why I got the following error when I run the ".exe" file compiled by matlab 2012b?
I'm not sure that you can create an *.exe file with only a function. I think that you have to compile a script.
10 years 前 | 0
已回答
how to insert image to gui?
You can use the function 'axes' to select the axe for your image : axes(axisHandle) matlabImage = imread('image.png'...
how to insert image to gui?
You can use the function 'axes' to select the axe for your image : axes(axisHandle) matlabImage = imread('image.png'...
10 years 前 | 6
已回答
process data from csv file
I suggest you to use the function csvread : clear; close all; out = csvread('C:\Users\yyao\Desktop\Luminance_18.csv',...
process data from csv file
I suggest you to use the function csvread : clear; close all; out = csvread('C:\Users\yyao\Desktop\Luminance_18.csv',...
10 years 前 | 0
| 已接受
已回答
How can i find rows or coulmns which contain maximum zeroes?
If you want the row and the colum with the maximum of values equal to zeros, I propose (for a 2D matrix) : [numberOfZeroCol...
How can i find rows or coulmns which contain maximum zeroes?
If you want the row and the colum with the maximum of values equal to zeros, I propose (for a 2D matrix) : [numberOfZeroCol...
10 years 前 | 1