A subplot with a numerical value
    3 views (last 30 days)
  
       Show older comments
    
    Ahmed Abdulla
 on 8 Jun 2020
  
    
    
    
    
    Answered: Fangjun Jiang
      
      
 on 8 Jun 2020
             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 Accepted Answer
  Fangjun Jiang
      
      
 on 8 Jun 2020
        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 Comments
More Answers (0)
See Also
Categories
				Find more on Subplots in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

