Importing workspace variable to simulink?
Mostrar comentarios más antiguos
Can u help how to import a workspace variable to simulink. I am facing problem with simin block. It is asking for time column. But i want to send only variable, in my case it is row vector.
Respuestas (1)
Fangjun Jiang
el 6 de Ag. de 2020
0 votos
Use "From Workspace" block. Assume your data is MyData=1:10, you need to make it a column vector and also provide a column vector of time.
time=(0:0.1:0.9)';
Specify the data as [time, MyData.'] for the "From Workspace" block.
2 comentarios
Santos García Rosado
el 10 de Mzo. de 2021
Hi Fangjun. Does this work with a Matrix aswell?
Santos García Rosado
el 10 de Mzo. de 2021
Link to Fangjun's answer: https://www.mathworks.com/matlabcentral/answers/768262-import-matlab-matrix-to-simulink
Categorías
Más información sobre Interactive Model Editing en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!