Get the model output from system identification toolbox, send it to workspace
5 次查看(过去 30 天)
显示 更早的评论
Hi,
I have general question about transferring data from system identification toolbox to workspace.
I have estimated my model using Nonlinear ARX - system identification toolbox in MATLAB and got my model. And then I want to transfer the result and graph from "Model Output" to workspace for further processing (plot it as MATLAB figure) but i don’t know how to call it especially the model output graph.
Need some step by step advices.
note: I have exported my model to workspace but I don’t know how to call the model output.
Thank you
Kind Regards
Imam
0 个评论
回答(1 个)
Vatsal
2024-5-9
Hi,
I understand that you want to get the model's output in the workspace. First, ensure your model is exported to the workspace. You mentioned that this have been done, so model variable will be visible in the workspace. The next step involves using the 'compare' function to evaluate the model's performance.
Here is a general example of how to do so:
% Compare
compare(data, nlarx1);
Additionally, you have the option to save the result images directly from the results tab after the model has been estimated, an option to copy the image or to save the image should appear.
I hope this helps!
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Linear Model Identification 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!