I would add one variable inside function
Afficher commentaires plus anciens
I have x(t) and I would to create x(t+ta) by matlab code. For example
if I have x(t)= 2t+3 , I need to create x(t+ta)= 2t+2ta+3 and so on.
Please consider x(t)=5sin(2t+theta), and x(t+ta)=5sin(2t+2ta+theta) for your explaintion.
Thank you in advance.
Réponse acceptée
Plus de réponses (1)
KALYAN ACHARJYA
le 10 Mar 2019
Modifié(e) : madhan ravi
le 10 Mar 2019
syms t ta theta
x(t)=5*sin(2*t+theta);
disp(x(t+ta))
Command Window
5*sin(2*t + 2*ta + theta)
2 commentaires
Willim
le 10 Mar 2019
KALYAN ACHARJYA
le 10 Mar 2019
Modifié(e) : KALYAN ACHARJYA
le 10 Mar 2019
Hello Faraj, you are doing wrong way, do the operation inside disp() only
Its giving the answer:
syms t ta theta
x(t)=5*sin(2*t+theta);
disp(x(t)*x(t+ta))

Catégories
En savoir plus sur Conversion Between Symbolic and Numeric dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!