PLOT Specific x,y data
43 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
sanbadgerdude
el 31 de Mzo. de 2016
Comentada: KSSV
el 1 de Abr. de 2016
I have 3 values...
At x=51,y=.0189
At x=201,y=.112
At x=40001,y=.202
All I want to do is plot these values and show the curve. On the x-axis labels for 51,201,40001 and on the y-axis labels for .0189, .112, .202.
0 comentarios
Respuesta aceptada
KSSV
el 31 de Mzo. de 2016
x = [51 ; 201 ; 40001] ;
y = [.0189 ; .112 ; .202] ;
plot(x,y)
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre View and Analyze Simulation Results 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!