How to produce a plot on the x and y axes
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Emilia
el 25 de Jun. de 2021
Respondida: KSSV
el 25 de Jun. de 2021
Hello friends,
I want to produce a plot, there is a problem in line 5.
Thanks for the helpers
clc;
w=8500;
teta = 39.29:51.57;
F=-w/(2*sin(teta));
plot(teta,F)
grid
0 comentarios
Respuesta aceptada
KSSV
el 25 de Jun. de 2021
w=8500;
teta = 39.29:51.57;
F=-w./(2*sin(teta)); % <-- element by element operation
plot(teta,F)
grid
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Line Plots 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!