plotting quadratic equation and curve fittting
    15 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
    Avinash Tallapaneni
      
 il 13 Dic 2016
  
    
    
    
    
    Commentato: Star Strider
      
      
 il 5 Giu 2023
            im kinda of struck how to plot quadratic function for different x and y values.the equation is (x^25)+(y^3)-(6*x^24*y) for different values of x =[-10,10] and y=[-10,10] and do a polyfit for the obtained point
0 Commenti
Risposta accettata
  Star Strider
      
      
 il 13 Dic 2016
        The plot is straightforward:
fcn = @(x,y) (x.^25)+(y.^3)-(6*x.^24.*y);
[X,Y] = meshgrid(-10:0.5:10);
figure(1)
meshc(X, Y, fcn(X,Y))
grid on
xlabel('X')
ylabel('Y')
I do not know the reason you would want to fit this with polyfit. You already have the equation for the surface.
8 Commenti
  Star Strider
      
      
 il 5 Giu 2023
				@M — Your function is not appropriate for this code, since it has only one variable and this code requires functions with two variables.  
Più risposte (0)
Vedere anche
Categorie
				Scopri di più su Surface and Mesh Plots in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
