Writing data from multiple scopes in Simulink to an excel file?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
James Murray
am 20 Apr. 2014
Kommentiert: James Murray
am 20 Apr. 2014
Hi
I have used "to workspace" function and saved the data as x and y variables.
I know I can use the following to export one scope and save it in excel. But how do I change this so it does both of them at the same time?
A= [tout,x];
save file.xls A -ascii
Thanks
0 Kommentare
Akzeptierte Antwort
Mischa Kim
am 20 Apr. 2014
James, simply append the second data vector to the matrix
A = [tout,x,y];
save file.xls A -ascii
where x and y are the two data arrays from the two scopes.
4 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Sources finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!