matrix to a point plot
9 ビュー (過去 30 日間)
古いコメントを表示
Hi,i'm fairly new to all this, but as the title say i need help to make a point plot from my data. So i have a [M N] Matrix (my test data is 7x15, but it need to work with any size matrix),
i want to have so it look like this.: https://www.google.dk/search?q=scatterplot&source=lnms&tbm=isch&sa=X&ved=0ahUKEwj27tGe7vDaAhXTxKYKHabqBAsQ_AUICigB&biw=1366&bih=637#imgrc=hjPIB_OYmEMk7M: but i can't make it work with a unknown size matrix. I have tried with the in-build scatterplot function (isn't it the best function to use in this case) I have also tried with gplotmatrix but it's a bit more complex..
Thank you in advance, sincerely
Christian
4 件のコメント
Ameer Hamza
2018 年 5 月 6 日
Do you mean column value or row value? Look at my answer below. It takes column number as x value.
採用された回答
Ameer Hamza
2018 年 5 月 6 日
xData = ones(size(data)).*[1:size(data,2)]; % create x matrix with same column number
scatter(xData(:), data(:));
here data is the name of your m*n matrix.
2 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Scatter Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!