統計
All
Feeds
回答済み
How can I remove all the paths for Toolboxes in MATLAB?
There is no supported way of undoing the path setting in MATLAB. The safest way to avoid name collisions is to rename all user f...
How can I remove all the paths for Toolboxes in MATLAB?
There is no supported way of undoing the path setting in MATLAB. The safest way to avoid name collisions is to rename all user f...
約14年 前 | 2
| 採用済み
回答済み
Second order homogeneous differential equation
You can use the DSOLVE command in the Symbolic Math Toolbox: >> dsolve('D2y - Dy - 6*y = 0') ans = C4*exp(3*t) +...
Second order homogeneous differential equation
You can use the DSOLVE command in the Symbolic Math Toolbox: >> dsolve('D2y - Dy - 6*y = 0') ans = C4*exp(3*t) +...
約14年 前 | 1
回答済み
How do I dynamically generate a file name for save in MATLAB
You can use the function form of the SAVE command: i = 10; fname = sprintf('myfile%d.mat', i); save(fname) For m...
How do I dynamically generate a file name for save in MATLAB
You can use the function form of the SAVE command: i = 10; fname = sprintf('myfile%d.mat', i); save(fname) For m...
約14年 前 | 12
回答済み
Why do I get false results when using equal relational operation for the logical operation?
If you look carefully at the definition of fundamental arithmetic operations like addition and multiplication, you soon encounte...
Why do I get false results when using equal relational operation for the logical operation?
If you look carefully at the definition of fundamental arithmetic operations like addition and multiplication, you soon encounte...
約14年 前 | 0
回答済み
How does logical indexing work?
Assume A is a MxN matrix. Let "tf" be a MxN logical matrix. Then A(tf) extracts all elements of A corresponding to all tru...
How does logical indexing work?
Assume A is a MxN matrix. Let "tf" be a MxN logical matrix. Then A(tf) extracts all elements of A corresponding to all tru...
約14年 前 | 1
回答済み
Why is 6*i not a complex number in my program?
Looks like you might have a variable defined named "i" which is a real. If this is the case, then the "definition" of "i" as ima...
Why is 6*i not a complex number in my program?
Looks like you might have a variable defined named "i" which is a real. If this is the case, then the "definition" of "i" as ima...
約14年 前 | 0
回答済み
Does absolute intensity in an image matter when computing the normalized cross correlation with NORMXCORR2?
The normalized cross correlation computed in normxcorr2 is robust to differences in illumination between the template and input ...
Does absolute intensity in an image matter when computing the normalized cross correlation with NORMXCORR2?
The normalized cross correlation computed in normxcorr2 is robust to differences in illumination between the template and input ...
約14年 前 | 1
| 採用済み
回答済み
How is the winning neuron selected by the NEWSOM function within Neural Network Toolbox?
The NEWSOM function is used to obtain a self-organizing network. The syntax for this function is as follows: net = newsom(P...
How is the winning neuron selected by the NEWSOM function within Neural Network Toolbox?
The NEWSOM function is used to obtain a self-organizing network. The syntax for this function is as follows: net = newsom(P...
約14年 前 | 1
| 採用済み
質問
Is there a function which calculates a POLYFIT and MEAN of vectors in MATLAB 7.11 (R2010b)?
I am working with MATLAB 7.11 (R2010b). In my project I need to linear fit multiple vectors and calculate the mean of them. I wo...
約14年 前 | 1 件の回答 | 0
1
回答質問
How is the winning neuron selected by the NEWSOM function within Neural Network Toolbox?
I would like to know how the winning neuron is selected by the NEWSOM function within Neural Network Toolbox.
約14年 前 | 1 件の回答 | 0