Scatter() working but not Plot()
    4 views (last 30 days)
  
       Show older comments
    
    Kateri Kaminski
 on 1 Nov 2018
  
    
    
    
    
    Commented: Kateri Kaminski
 on 5 Nov 2018
            Hello,
I am having trouble getting plot() to work. My code works if I use scatter() instead of plot(). If I used plot(), then I get Error in plot(x,y). Can someone please tell me why plot is not working? Thanks!
x = 1:10;
y = x.^2;
figure
hold on
plot(x,y)
hold off
6 Comments
Accepted Answer
  madhan ravi
      
      
 on 2 Nov 2018
        
      Edited: madhan ravi
      
      
 on 2 Nov 2018
  
      Delete another .m file which has the same name plot.m or rename it
9 Comments
  Stephen23
      
      
 on 3 Nov 2018
				"That makes sense. Do you know why scatter() works then? This loop is the first time I am using plot() so I am not sure why that would be any different than scatter()."
Because you created a variable named plot, but did not create a variable named scatter.
More Answers (0)
See Also
Categories
				Find more on Annotations 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!






