Matlab 2012a subs() BUG?
1 回表示 (過去 30 日間)
古いコメントを表示
I have function that is a sum of multiple sinusoidal functions. It is x(t).
I try to first do time shift, no problem:
syms x;
syms t;
%define x, some long sinusoidal function
r1 = subs(x,t,t-1)
Everything up to here runs fine. Next I want to evaluate the shifted function.
subs(r1, t, 0)
Now after this step above the result is NaN Result should be 1, by plotting...
3 件のコメント
回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!