Feeds
已回答
How to plot multiple iterations of a for loop on the same axes.
Try to use hold instead of figure
How to plot multiple iterations of a for loop on the same axes.
Try to use hold instead of figure
10 years 前 | 0
已回答
HOW can i generate simulink model from matlab code
You can look at the S-function block. This page and its links explain everything about it: http://www.mathworks.com/help/simul...
HOW can i generate simulink model from matlab code
You can look at the S-function block. This page and its links explain everything about it: http://www.mathworks.com/help/simul...
10 years 前 | 0
已回答
mex *.cpp under MATLAB 2013b and Xcode 5.0
char16_t is available since the c++11 version of the c++ standard. Your compiler might not comply with this version. Look at ...
mex *.cpp under MATLAB 2013b and Xcode 5.0
char16_t is available since the c++11 version of the c++ standard. Your compiler might not comply with this version. Look at ...
10 years 前 | 0
已回答
How do I find my wanted values in a .txt-file?
Hi! Have you tried readtable ? http://www.mathworks.com/help/matlab/ref/readtable.html
How do I find my wanted values in a .txt-file?
Hi! Have you tried readtable ? http://www.mathworks.com/help/matlab/ref/readtable.html
10 years 前 | 0
| 已接受
提问
How can I get information about a simulink model from a C program
Hello, I would like to know how to get some information about a simulink model from a C program, like the block types and their...
10 years 前 | 0 个回答 | 0
0
个回答已回答
Stuck using For-loops
use count000 = zeros(5,1); which declares a vector of 5 elements initialized at 0. Now, you can loop: for i=1:5 ...
Stuck using For-loops
use count000 = zeros(5,1); which declares a vector of 5 elements initialized at 0. Now, you can loop: for i=1:5 ...
10 years 前 | 0
| 已接受
提问
What is the difference between Matlab Answers and Matlab Newsreader ?
People seem to ask the same kind of auestion, so i'm wondering...
10 years 前 | 1 个回答 | 0
1
个回答已回答
Add values to a matrix from a loop
P = zeros(16,1); for j=0:15; percentage_change = (x((8+j),k)-baseline1)/baseline1*100; P(j+1) = percentage_change; ...
Add values to a matrix from a loop
P = zeros(16,1); for j=0:15; percentage_change = (x((8+j),k)-baseline1)/baseline1*100; P(j+1) = percentage_change; ...
10 years 前 | 0
提问
Given a port handle, how to find the port handles to which it connects?
Hello, If I have a port handle in Simulink, I would like to know how to find the port handles of all ports to which this port...
10 years 前 | 0 个回答 | 0
0
个回答已回答
How can I define a custom BlockType in Simulink
In fact, _Reference_ was displayed because the library from which the block was taken was not on the path. It had nothing to do ...
How can I define a custom BlockType in Simulink
In fact, _Reference_ was displayed because the library from which the block was taken was not on the path. It had nothing to do ...
11 years 前 | 0
| 已接受
提问
How can I define a custom BlockType in Simulink
Hello, When I create a custom block using an S-function, the BlockType of this block, by using get_param(myblock, '...
11 years 前 | 2 个回答 | 0