How to draw the figure dot like this. ( I have a example figure.)

1 visualización (últimos 30 días)
30= 0.0694914000000000
45= 0.135992000000000
60= 0.398871000000000
  2 comentarios
KSSV
KSSV el 15 de Jun. de 2022
You can achieve this using simple plot right?
Steven KIM
Steven KIM el 15 de Jun. de 2022
I am learning the necessary parts by self-taught little by little :)

Iniciar sesión para comentar.

Respuesta aceptada

Star Strider
Star Strider el 15 de Jun. de 2022
Try this —
A = [30 45 60; 0.069491 0.135992 0.398871; 0.069491 0.135992 0.398871]+[0; 0; 0.3];
figure
plot(A(1,:), A(2:3,:), '.-', 'MarkerSize',15)
xlabel('Inclined angle (degree)')
ylabel('Heave max (m)')
axis padded
.

Más respuestas (0)

Categorías

Más información sobre Interactive Control and Callbacks 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!

Translated by