Borrar filtros
Borrar filtros

How to plot matrice in a figure ?

1 visualización (últimos 30 días)
hiba
hiba el 20 de Mzo. de 2017
Respondida: Iddo Weiner el 20 de Mzo. de 2017
hi I want to display (plot) the following table in a figure how to do it ?

Respuesta aceptada

Iddo Weiner
Iddo Weiner el 20 de Mzo. de 2017
How do you want to display this data? Here's 1 idea:
pair1 = [0 1];
pair2 = [0.5 0.7];
% ...
pairN = [0.1 1.5];
data = [pair1; pair2; pairN];
bar(data)
legend('observation1','observation2','location','NW')

Más respuestas (0)

Categorías

Más información sobre Interactive Control and Callbacks en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by