필터 지우기
필터 지우기

What is the name of this plot?

조회 수: 2 (최근 30일)
fadams18
fadams18 2022년 2월 11일
댓글: fadams18 2022년 2월 11일
does anyone know the name of this type of plot? and how can i do this if I have 3 variables
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 .

채택된 답변

Walter Roberson
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.
  댓글 수: 1
fadams18
fadams18 2022년 2월 11일
Thanks a lot. this is what I was looking for. I will modify the axes accordingly.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Annotations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by