HOW SHOULD DRAW THIS IN LOOP FORM? WHERE IS THE PROBLEM IN MY CODE?
    6 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
    HADIMARGO
 am 13 Dez. 2018
  
    
    
    
    
    Bearbeitet: HADIMARGO
 am 13 Dez. 2018
             my code:
my code:s=0;
for n=1:0.01:10
    s=s+(-1^n+1*sin(n*pi*x));
end
f=(2/pi)*s;
plot(x,f)
Where is wrong in my code?
4 Kommentare
  Walter Roberson
      
      
 am 13 Dez. 2018
				You are defining x to have only 11 points, to exist only at the integers. Your required plot is clearly defined much denser than that.
Weitere Antworten (1)
  madhan ravi
      
      
 am 13 Dez. 2018
        x=linspace(-5,5,10000);
s=0;
for n=1:0.01:10
    s=s+(-1^n+1*sin(n*pi*x));
end
f=(2/pi)*s;
plot(x,f)
Siehe auch
Kategorien
				Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!






