Output of Transfer Function in Sys ID App not the same as workspace
조회 수: 1 (최근 30일)
이전 댓글 표시
The output of a model is different in the App than in the command line:
From the app
y_sim2 = sim( tf4 , merged(:,[],:));
y2 = y_sim2.OutputData;
realy = merged.OutputData;
%%
figure()
plot(y2{2}, 'Color', 'c')
hold on
plot(realy{2}, 'Color', 'k')
I am wondering why this occurs with the same transfer function and the same input!
댓글 수: 0
답변 (1개)
Rajiv Singh
2022년 8월 9일
In addition to the input, you need to ensure that you are using the same initial conditions. See:
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Uncertainty Analysis에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!