I am getting error while plotting graph from this command figure;plot(sum_n, '--bs',sum_vec,'--bs')

figure;
plot(sum_n, '--bs', sum_vec,'--bs')
i am getting the message
"Data must be a single matrix Y or a list of pairs X,Y".
how to get rid of it.

2 件のコメント

What does
whos sum_n sum_vec
say?
Prabha Kumaresan
Prabha Kumaresan 2017 年 11 月 7 日
sum_n is the output of (no of users vs throughput) in NOMA sum_vec is the output of (no of users vs throughput) in OFDMA I want to compare both NOMA and OFDMA in the same graph

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

回答 (1 件)

KSSV
KSSV 2017 年 11 月 7 日
編集済み: KSSV 2017 年 11 月 7 日
You cannot plot two plots at a time with out x data..that's why error....you should try like below:
x1 = 1:length(sum_n) ;
x2 = 1:length(sum_vec) ;
figure;
plot(x1,sum_n, '--bs',x2, sum_vec,'--bs')

カテゴリ

ヘルプ センター および File ExchangeMATLAB についてさらに検索

タグ

質問済み:

2017 年 11 月 7 日

編集済み:

2017 年 11 月 7 日

Community Treasure Hunt

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

Start Hunting!

Translated by