Feeds
已回答
How to import column data from multiple Excel files with different number of rows?
%%You can try something like this, Just finding the length of vector and defining the sizes clc clear all close all fnames...
How to import column data from multiple Excel files with different number of rows?
%%You can try something like this, Just finding the length of vector and defining the sizes clc clear all close all fnames...
5 years 前 | 1
已回答
How can I measure the processing time of MATLAB Function Block?
Can you try putting a tic in the begining of your MATLB code and toc at the end of your code. function time_taken= example_te...
How can I measure the processing time of MATLAB Function Block?
Can you try putting a tic in the begining of your MATLB code and toc at the end of your code. function time_taken= example_te...
5 years 前 | 1
已回答
Troubles with Matlab&Simulink input time format
Hello This is how I deal with date and time in MATLAB, Hope it will help you. it will give you date and time of that particul...
Troubles with Matlab&Simulink input time format
Hello This is how I deal with date and time in MATLAB, Hope it will help you. it will give you date and time of that particul...
8 years 前 | 0
已回答
Lost signal in simulink scope
Hello you need to uncheck "Limit data points to last" every time you grab and place a scope block from Library into your Model. ...
Lost signal in simulink scope
Hello you need to uncheck "Limit data points to last" every time you grab and place a scope block from Library into your Model. ...
8 years 前 | 0
| 已接受
已回答
How can I add error bars to a stacked bar graph?
Hello Ellie, I did something like this. I hope it will work for you .I ran a below script on my machine and attached my results...
How can I add error bars to a stacked bar graph?
Hello Ellie, I did something like this. I hope it will work for you .I ran a below script on my machine and attached my results...
8 years 前 | 1
已回答
How to get a content of a cell array?
Hello Lara, You can do something like C = { 0.300000 0.410000 ,0.41000 0.430000 }; % your Cell x=C{1,1} % extracting ...
How to get a content of a cell array?
Hello Lara, You can do something like C = { 0.300000 0.410000 ,0.41000 0.430000 }; % your Cell x=C{1,1} % extracting ...
8 years 前 | 0
已回答
make up a timing in simulink
Hello , You can use *Signal Builder* block in Simulinik. This block will allow you to create your customized signal. You ca...
make up a timing in simulink
Hello , You can use *Signal Builder* block in Simulinik. This block will allow you to create your customized signal. You ca...
8 years 前 | 0
| 已接受
已回答
Hello, how could I fill a figure bounded by a curve?
Hello Astarita, You can use *fill* function in MATLAB. All you just need is X and Y axis data for both curves. I also wrote ...
Hello, how could I fill a figure bounded by a curve?
Hello Astarita, You can use *fill* function in MATLAB. All you just need is X and Y axis data for both curves. I also wrote ...
8 years 前 | 0
| 已接受
已回答
Why can't I build model in Simulink which contains a S-function?
* In order to generate code for the s-function, you must place the tlc file in the same folder of S-function. TLC means Target L...
Why can't I build model in Simulink which contains a S-function?
* In order to generate code for the s-function, you must place the tlc file in the same folder of S-function. TLC means Target L...
8 years 前 | 0
| 已接受
已回答
How can I reduce the compiling time taken in a matlab simulink model?
* Try Using Accelerator mode in Simulink. Also try to run model from MATLAB Script. like, sim('MyModel') % it will run you...
How can I reduce the compiling time taken in a matlab simulink model?
* Try Using Accelerator mode in Simulink. Also try to run model from MATLAB Script. like, sim('MyModel') % it will run you...
8 years 前 | 0
已回答
Run simulink model (slx format) in m-file
* If I understand your question correctly, * What I usually do is, I initialize work space with all the constants first and th...
Run simulink model (slx format) in m-file
* If I understand your question correctly, * What I usually do is, I initialize work space with all the constants first and th...
8 years 前 | 4
已回答
how to link c code to simulink
* First create an S-function for the C-Code that you have. if you haven't deal with S-functions yet, <https://www.mathworks.com/...
how to link c code to simulink
* First create an S-function for the C-Code that you have. if you haven't deal with S-functions yet, <https://www.mathworks.com/...
8 years 前 | 0
| 已接受
已回答
How Can I store results from Variable step solver(ODE15s) to a Pre-initialized variable
First Initialized Vector Y as Y=zeros(100x48). Also introduced Coder.varsize('Y',[1000 48],[1 0]). Coder.varsize will allow Y to...
How Can I store results from Variable step solver(ODE15s) to a Pre-initialized variable
First Initialized Vector Y as Y=zeros(100x48). Also introduced Coder.varsize('Y',[1000 48],[1 0]). Coder.varsize will allow Y to...
8 years 前 | 0
| 已接受
提问
How Can I store results from Variable step solver(ODE15s) to a Pre-initialized variable
Hello All, I have been working on a problem which using ODE15s solver and anonymous function . I have used Coder.extrinsic(myfu...
8 years 前 | 1 个回答 | 1