What is the name of this plot?
1 回表示 (過去 30 日間)
古いコメントを表示
does anyone know the name of this type of plot? and how can i do this if I have 3 variables
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/891205/image.png)
Missing Value prop =0.1:0.2:0.9
Rendezvous = 1:25:100
error is a 5x20 matrix ( meaning for every Missing Value prob there is a 1x20 values from my simulation )
I would like to plot Missing Value by Rendezvous using the error values .
0 件のコメント
採用された回答
Walter Roberson
2022 年 2 月 11 日
MissingValueprop = 0.1:0.2:0.9;
Rendezvousprop = 1:25:100;
%sample data for demonstration
errorMatrix = sort(sort(rand(length(Rendezvousprop), length(MissingValueprop))),2);
%end sample data
imagesc(Rendezvousprop, MissingValueprop, errorMatrix); colorbar()
xlabel('Rendezvous prop.'); ylabel('Missing Value prop.');
However: you code has Rendezvous prop going to 100, but your sample image has it going to 1.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Formatting and Annotation についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!