I am not getting the plot graph for this equation.
    7 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
s=A+((B*exp(-1.001*((x.^2) + 100)))/((x.^2) +100)) This is the equation I am working on I have x ranging from -20 to 20 in steps of 2 and I think the problem is with the constants being very small. A= 10^-10 B=10^-3
Graph is not being generated. Would someone help in generating the graph for this.
0 Kommentare
Akzeptierte Antwort
  Brian B
      
 am 2 Apr. 2013
        
      Bearbeitet: Brian B
      
 am 2 Apr. 2013
  
      Presumably you want array division instead of a LS solution. Try
 s=A+((B*exp(-1.001*((x.^2) + 100)))./((x.^2) +100))
 %         Note the dot right here  ^
That gives you a vector instead of a scalar. Plots of scalars tend to be rather boring. (The plot function does draw a single point, but it's often easy to miss.)
Weitere Antworten (0)
Siehe auch
Kategorien
				Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange
			
	Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!