how to make such type of plot in matlab? we have 4 models and each model have different depth and different velocities v1, v2.
Mostrar comentarios más antiguos

1 comentario
Mathieu NOE
el 9 de Dic. de 2020
hello
when you use the plot function, it can handle multiple groups of x, y data pairs , and they don't need to be of the same length :
example : first data x,y has length 10 , second 20 :
plot ((1:10),sin((1:10)*pi/10),'b',(1:20),cos((1:20)*pi/10),'r'); grid
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Polar Plots en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!