Matlab program to plot y(t) graph
21 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
- Program to plot the given function y(t) and then to plot y(t+4),2y(t+4) , y(2t), y(2t-3) , y(t/2).
Risposte (3)
Setsuna Yuuki.
il 30 Nov 2020
If you function is y(t), and you iterate this function in the time, your can plot it:
time = 0:0.01:1;
y = sin(time) %Your y(t). Can be anything function.
plot(time,y)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/435028/image.jpeg)
0 Commenti
Ali Imran
il 11 Set 2021
Modificato: Walter Roberson
il 11 Set 2021
Function y=2x(t)
y=t^2;
Error program
1 Commento
Walter Roberson
il 11 Set 2021
MATLAB is case sensitive for the keywords, so you need to use function instead of Function
MATLAB function names have the same rules as MATLAB variable names.
MATLAB variable names must start with an english letter A through Z or a through z. After that they may have those letters, or the digits 0 to 9, or underscore ('_') . -- so start with letter, but after that can be letters, numbers, underscore. The maximum variable length is 64 characters.
You tried to use a name 2x which starts with a number.
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!