Error plot Bar graph
조회 수: 22 (최근 30일)
이전 댓글 표시
Guilherme Lopes de Campos
2019년 2월 19일
댓글: Guilherme Lopes de Campos
2019년 3월 24일
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
댓글 수: 0
채택된 답변
Sajeer Modavan
2019년 3월 20일
for using bar function you have to give M-by-N matrix
X = randi([1 100],27,2);
bar(X)
댓글 수: 2
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!