WHich loops or command should i use in order to plot this equation? It has 3 variables: v,x,t
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
0 comentarios
Respuestas (1)
Mehmed Saad
el 15 de Abr. de 2020
Editada: Mehmed Saad
el 15 de Abr. de 2020
define x,t of same length i.e. select a sampling rate
fs = 10;%Hz
Now define time
t = 0:1/fs:100-1/fs;
x = linspace(0,2*pi,length(t));
i_t = 1.414*sin(w*t+phi);
Now Run the for loop for t
i = 1:length(x)
Now index 1 by 1 and sum them
Remember there are two nested for loop, 1 is for v and other for t
2 comentarios
Mehmed Saad
el 16 de Abr. de 2020
- yes you need another loop for x
- you can nest for loop as x t and v or t x and v
- You should follow nyquist rate as your frequency is 60Hz so you need atleast 120Hz fs
- x size can differ from t, it is not necessary
Ver también
Categorías
Más información sobre Loops and Conditional Statements en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!