Info
此问题已关闭。 请重新打开它进行编辑或回答。
Why there is a mis-match when I do the summation of the elements of the vector in simulink function and workspace editor block??
1 次查看(过去 30 天)
显示 更早的评论
I am performing the summaton of the elements of a vector in workspace and do the same in simulink function block but in workspace I am getting the correct result while in simulink function block i am getting the different result. Can any one guide me on this? I am using Matlab R019a
0 个评论
回答(1 个)
Dinesh Yadav
2019-10-3
When importing data into Simulink using From Workspace block the first column always represents time. So lets say we imported an array from workspace of dimension 1x100, it will take the 1st column as time and rest 99 columns as input. Therefore the answer of summation of all values will not be correct. To correct this while importing into Simulink add the first column value as 0 which signifies, provide input data to Simulink at t=0. If we put first column value as lets say 4, then the output of summation will be observed at t=4.
1 个评论
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!