Hi MATLAB community,
I am trying create a bar graph, but show the follows error message:
X = table2array(valoresextremos); % size matriz (27,2)
x = X(:,1); 27 lines
y = X(:,2); 27 lines
bar(x,y)
Error using bar (line 191)
XData values must be unique.
Error in valores_extremos_grafico (line 4)
bar(x,y)
Could help me ?
Thank
Guilherme

 Respuesta aceptada

Sajeer Modavan
Sajeer Modavan el 20 de Mzo. de 2019

0 votos

for using bar function you have to give M-by-N matrix
X = randi([1 100],27,2);
bar(X)

2 comentarios

Sajeer Modavan
Sajeer Modavan el 24 de Mzo. de 2019
did you able to solve it
Guilherme Lopes de Campos
Guilherme Lopes de Campos el 24 de Mzo. de 2019
Hi Mohamed,
It worked,
Thank you very much for help,
My apologies for late to answer,
Guilherme Lopes de Campos

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre 2-D and 3-D Plots en Centro de ayuda y File Exchange.

Productos

Versión

R2018b

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by