Ananya Pai
Followers: 0 Following: 0
Statistiques
4 Questions
0 Réponses
RANG
205 098
of 295 673
RÉPUTATION
0
CONTRIBUTIONS
4 Questions
0 Réponses
ACCEPTATION DE VOS RÉPONSES
50.0%
VOTES REÇUS
0
RANG
of 20 262
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 154 257
CONTRIBUTIONS
0 Problèmes
0 Solutions
SCORE
0
NOMBRE DE BADGES
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
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éponseQuestion
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éponseQuestion
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éponseQuestion
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