A subplot with a numerical value
    3 ビュー (過去 30 日間)
  
       古いコメントを表示
    
 Ive seen the following figure and i wanted to ask if it was possible to have a subplot with only a value like half of the figure. I was able to generate the scatter plots easily but i struggled to generate subplots with just a numerical value
Ive seen the following figure and i wanted to ask if it was possible to have a subplot with only a value like half of the figure. I was able to generate the scatter plots easily but i struggled to generate subplots with just a numerical value 採用された回答
  Fangjun Jiang
      
      
 2020 年 6 月 8 日
        s=subplot(3,3,9);
set(s.XAxis,'visible','off');
set(s.YAxis,'visible','off');
t=text(0.5,0.5,num2str(1.2),'color',[1 0 0]);
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
				Help Center および File Exchange で Subplots についてさらに検索
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


