
Easwar Kumar Yarrabikki
LHP Engineering Solutions
Followers: 0 Following: 0
Statistica
RANK
1.876
of 298.615
REPUTAZIONE
35
CONTRIBUTI
1 Domanda
13 Risposte
ACCETTAZIONE DELLE RISPOSTE
100.0%
VOTI RICEVUTI
8
RANK
of 161.826
CONTRIBUTI
0 Problemi
0 Soluzioni
PUNTEGGIO
0
NUMERO DI BADGE
0
CONTRIBUTI
0 Post
CONTRIBUTI
0 Pubblico Canali
VALUTAZIONE MEDIA
CONTRIBUTI
0 Punti principali
NUMERO MEDIO DI LIKE
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...
circa 6 anni fa | 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...
circa 6 anni fa | 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...
circa 8 anni fa | 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. ...
circa 8 anni fa | 0
| accettato
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...
circa 8 anni fa | 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 ...
circa 8 anni fa | 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...
circa 8 anni fa | 0
| accettato
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 ...
circa 8 anni fa | 0
| accettato
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...
oltre 8 anni fa | 0
| accettato
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...
oltre 8 anni fa | 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...
oltre 8 anni fa | 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/...
oltre 8 anni fa | 0
| accettato
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...
oltre 8 anni fa | 0
| accettato
Domanda
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...
oltre 8 anni fa | 1 risposta | 1