I have this program
syms t
x0=input('x0= ');
x1=input('x1= ');
x2=input('x2= ');
y=input('input your function of variable t= ');
fx0=subs(y,t,x0)
fx1=subs(y,t,x1)
fx2=subs(y,t,x2)
But it didn't work. How to use subs in symbolic function. Thanks

 Akzeptierte Antwort

David Hill
David Hill am 7 Dez. 2019

1 Stimme

syms t
x0=input('x0= ');
x1=input('x1= ');
x2=input('x2= ');
y=input('input your function of variable t= ');
t=x0;
fx0=subs(y)
t=x1;
fx1=subs(y)
t=x2;
fx2=subs(y)

Weitere Antworten (0)

Kategorien

Mehr zu Symbolic Math Toolbox finden Sie in Hilfe-Center und File Exchange

Produkte

Version

R2014a

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by