photo

Ananya Pai


Last seen: quasi 4 anni fa Attivo dal 2022

Followers: 0   Following: 0

Statistica

MATLAB Answers

4 Domande
0 Risposte

RANK
267.794
of 301.421

REPUTAZIONE
0

CONTRIBUTI
4 Domande
0 Risposte

ACCETTAZIONE DELLE RISPOSTE
50.0%

VOTI RICEVUTI
0

RANK
 of 21.269

REPUTAZIONE
N/A

VALUTAZIONE MEDIA
0.00

CONTRIBUTI
0 File

DOWNLOAD
0

ALL TIME DOWNLOAD
0

RANK

of 174.475

CONTRIBUTI
0 Problemi
0 Soluzioni

PUNTEGGIO
0

NUMERO DI BADGE
0

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • Thankful Level 2

Visualizza badge

Feeds

Visto da

Domanda


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 ...

quasi 4 anni fa | 1 risposta | 0

1

risposta

Domanda


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

quasi 4 anni fa | 1 risposta | 0

1

risposta

Domanda


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-...

quasi 4 anni fa | 1 risposta | 0

1

risposta

Domanda


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

quasi 4 anni fa | 1 risposta | 0

1

risposta