%% Tangent Planes in Matlab using Taylor Approximation
x=linspace(0,3,200);
y=sqrt(x);
plot(x,y,'k')
dy = diff(y);
hold on;
grid on;
a = 1;
L = sqrt(a) + 1/2*(1/sqrt(1))*(x-a);
line(x, L, 'Color', 'blue')
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.