Matlab 2012a subs() BUG?
Ältere Kommentare anzeigen
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 Kommentare
Walter Roberson
am 15 Mär. 2013
Please show r1
NaN could show up if the expression is singular at t=0
ha9981
am 15 Mär. 2013
Walter Roberson
am 15 Mär. 2013
Okay, but you have not indicated what r1 or r2 are
Antworten (0)
Kategorien
Mehr zu Calculus finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

