Statistica
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 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
Feeds
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
rispostaDomanda
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
rispostaDomanda
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
rispostaDomanda
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
