Statistics
4 Questions
0 Answers
RANK
267,806
of 301,433
REPUTATION
0
CONTRIBUTIONS
4 Questions
0 Answers
ANSWER ACCEPTANCE
50.0%
VOTES RECEIVED
0
RANK
of 21,272
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 174,520
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Discussions
AVERAGE NO. OF 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 ...
4 years ago | 1 answer | 0
1
answerQuestion
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
4 years ago | 1 answer | 0
1
answerQuestion
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-...
4 years ago | 1 answer | 0
1
answerQuestion
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
4 years ago | 1 answer | 0
