How to plot only the available data?

I have two columns. The second column has not all its data completed, and as a result with the use of command readcell there is an error in screen (1x1 missing). I wouls like to make a plot taking into account the avalaiable data of the file.
I am uploading the file.
Thank you in advance

回答 (1 件)

Walter Roberson
Walter Roberson 2021 年 2 月 7 日

0 投票

d = readmatrix('uest.xlsx');
d = rmmissing(d);
scatter(d(:,1), d(:,2))

カテゴリ

ヘルプ センター および File Exchange2-D and 3-D Plots についてさらに検索

質問済み:

2021 年 2 月 7 日

回答済み:

2021 年 2 月 7 日

Community Treasure Hunt

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

Start Hunting!

Translated by