Import data from text file and use it on simulink

4 Ansichten (letzte 30 Tage)
ni david
ni david am 6 Sep. 2011
Kommentiert: Amit Kumar am 16 Apr. 2022
I have a txt file which has my signal versus time in two columns, how can i import it in simulink? I want to see the signal in simulink! thanks a lot in advance.
  2 Kommentare
Paulo Silva
Paulo Silva am 6 Sep. 2011
I changed your question title to something that better describes your question, the tags were also corrected.

Melden Sie sich an, um zu kommentieren.

Antworten (3)

Paulo Silva
Paulo Silva am 6 Sep. 2011
%I don't have your data so I must create my own data
x = 0:.1:1;
y = [x; exp(x)];
fid = fopen('exp.txt', 'wt');
fprintf(fid, '%6.2f %12.8f\n', y);
fclose(fid)
%Now I got the data file, import the data
fid = fopen('exp.txt', 'r');
a = fscanf(fid, '%g %g', [2 inf])
simin = a';
fclose(fid)
%Plot it just to see if it's correct, first column is time and second is data
plot(a(:,1),a(:,2))
Run the code to import your data and in your model insert one From Workspace block and all should work fine, be aware that data will be interpolated if your simulation runs from more than the time you have in your data, please check the From Workspace block configuration.

Grzegorz Knor
Grzegorz Knor am 6 Sep. 2011

Ubedullah Saeed
Ubedullah Saeed am 3 Mai 2015
Does that method preserve the data import in simulink for multiple runtime of the model or its just one time process

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by