photo

Ananya Pai


Last seen: plus de 2 ans il y a Actif depuis 2022

Followers: 0   Following: 0

Statistiques

  • Thankful Level 2

Afficher les badges

Feeds

Afficher par

Question


Expand f (x, y) =e^xln(1 + y) in terms of x and y up to the terms of 3rd degree using Taylor series.
clear clc close all syms x y f=input('Enter the function f(x,y): ') I=input('Enter the point[a,b] at which Taylor series ...

plus de 2 ans il y a | 1 réponse | 0

1

réponse

Question


Using ‘surf’ plot the surface f (x, y) =x(x^2+y^2).
clear clc x=-1:.05:1; y=-1:.05:1; [x,y]=meshgrid(x,y); z=x.*(x^2+y^2) surf(x,y,z); colormap spring shading interp

plus de 2 ans il y a | 1 réponse | 0

1

réponse

Question


Draw the 3-D plot for the function f(t)= (t, t ^2, t ^3), where 0 <= t <=100.
clear clc t=linspace(0,500); f=(t,t^2,t^3); comet3(x,y,z); plot3(x,y,z); xlabel('x-axis'); ylabel('y-axis'); zlabel('z-...

plus de 2 ans il y a | 1 réponse | 0

1

réponse

Question


Graph plotting of f(x,y)=e^x+e^y using ezsurf
clear clc syms x y f=(e^x+e^y) ezsurf(f) colormap cool

plus de 2 ans il y a | 1 réponse | 0

1

réponse