how to solve bar Error . Error using bar (line 58) X must be same length as Y.

1 回表示 (過去 30 日間)
john karli
john karli 2018 年 12 月 27 日
コメント済み: john karli 2018 年 12 月 27 日
i have this code. last time its work good and but now bar error is shown.
[num,text,raw] = xlsread('Book1.xlsx');
x=num(:,7);
observX = x(1:1000);
imageX=0:23;
nX = length(imageX);
for i = 1:nX
cX = imageX(i);
cntX(i) = sum(observX == cX);
end
pmfX = cntX/sum(cntX);
figure;
bar(imageX, pmfX);
title('Marginal PMF Of "O3.1st.Max.Hour"')
xlabel('Image Of O3.1st.Max.Hour')
ylabel('Marginal PMF')
figure;
bar(imageX, cntX);
title('Histogram Of "O3.1st.Max.Hour"');
xlabel('Image Of O3.1st.Max.Hour');
ylabel('Counts of Occurence');
Error using bar (line 58) X must be same length as Y.
  5 件のコメント
KSSV
KSSV 2018 年 12 月 27 日
編集済み: KSSV 2018 年 12 月 27 日
Error is clear the inputs of bar are of not same dimensions.
john karli
john karli 2018 年 12 月 27 日
kindly explain

サインインしてコメントする。

採用された回答

KSSV
KSSV 2018 年 12 月 27 日
Try:
x=num(:,2); % or x=num(:,1); %
As you have used
x=num(:,7);
I suspect.....one of the input to bar is empty or NaN...so the error.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDialog Boxes についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by