
Al Dente
Followers: 0 Following: 0
統計
All
Feeds
回答済み
How do I assign a column of a matrix as another matrix?
if z was matrix that looks like this: z = [1 2 3; 4 5 6; 5 6 0; 7 0 0; 0 0 0] I could get all the columns (positive numb...
How do I assign a column of a matrix as another matrix?
if z was matrix that looks like this: z = [1 2 3; 4 5 6; 5 6 0; 7 0 0; 0 0 0] I could get all the columns (positive numb...
9年以上 前 | 0
回答済み
having problem with mvnrnd...
matlab is basically telling you that it can't find the function: which mvnrnd will probably result in: 'mvnrnd' not foun...
having problem with mvnrnd...
matlab is basically telling you that it can't find the function: which mvnrnd will probably result in: 'mvnrnd' not foun...
9年以上 前 | 0
| 採用済み
回答済み
How can I convert following script to function?
function xxx(image,p) a=imread(image); [m n] = size(a); % remove this line p = 2; if you don't w...
How can I convert following script to function?
function xxx(image,p) a=imread(image); [m n] = size(a); % remove this line p = 2; if you don't w...
9年以上 前 | 0
| 採用済み
回答済み
No line on graph
your function: z = @(t)(((-0.005*pi*sqrt(5)*t)./2)+(2*sqrt(5)).^2); z(0:37.3) % would output values in the range of 19.3 t...
No line on graph
your function: z = @(t)(((-0.005*pi*sqrt(5)*t)./2)+(2*sqrt(5)).^2); z(0:37.3) % would output values in the range of 19.3 t...
9年以上 前 | 0
回答済み
MATLAB function to get all dependent .m files to generate exe using MATLAB 2013b
This might help: profile on -history; % your code here profile viewer; p = profile('info'); It will give you al...
MATLAB function to get all dependent .m files to generate exe using MATLAB 2013b
This might help: profile on -history; % your code here profile viewer; p = profile('info'); It will give you al...
9年以上 前 | 1
回答済み
I am new to Matlab and my objective is to use the NN Toolbox for my project. How to use the NNtoolbox
try this: nntool
I am new to Matlab and my objective is to use the NN Toolbox for my project. How to use the NNtoolbox
try this: nntool
10年弱 前 | 0
回答済み
Reference an excel workbook that's already open
actually XLex.ActiveWorkbook would give you a handle to the currently active workbook you can even XLex.Active...
Reference an excel workbook that's already open
actually XLex.ActiveWorkbook would give you a handle to the currently active workbook you can even XLex.Active...
10年弱 前 | 0
| 採用済み
回答済み
replace matlab function with algorithm
your tags say prime, so I assume you want to find out prime numbers: isprime(i)~=0 would that be the answer to your ...
replace matlab function with algorithm
your tags say prime, so I assume you want to find out prime numbers: isprime(i)~=0 would that be the answer to your ...
10年弱 前 | 0
回答済み
How can I get this example?
try looking in this folder you might find something, I'm assuming you have Simulink Design Optimization: winopen([matlabroo...
How can I get this example?
try looking in this folder you might find something, I'm assuming you have Simulink Design Optimization: winopen([matlabroo...
10年弱 前 | 0
質問
how do I "locate file on disk" using matlab?
The answer is system(['explorer /select,' fullfilepath_here]) question is: is there a matlab function that one can use instea...
10年弱 前 | 1 件の回答 | 0
1
回答回答済み
How to get the handle of simulink window in matlab
you can try using findall(0) -- root matlab handle, then looping over all the handles to find the right handle. What I wanted to...
How to get the handle of simulink window in matlab
you can try using findall(0) -- root matlab handle, then looping over all the handles to find the right handle. What I wanted to...
10年弱 前 | 1