everything matlab (almost)

file-download
10KB
The entire thing

Single Plot

clc;

clear all;

close all;

x = 0:0.01:2*pi;

plot(x, sin(2*x) + 1, 'r');

xlabel('x');

ylabel('y');

title('Single Plot');

legend('sin(2x) + 1');

Multiple Plot

Sub Plot

Parametric Plot

EZ Plot

Tangent to a curve

Extremum and inflexion point

Plot Area of Function

Plot Area between two functions

Plotting partial derivative of multi-variable function

Local maxima and minima for two variable function

Maxima & Minima using lagrangian multiplier method

Double integral to find volume of sphere of unit radius & visualization

Volume of solid bounded by plane $z=0$ and paraboloid $z=1-x^2-y^2$

Volume of solid under paraboloid $z=x^2+y^2$ and above xy plane, and inside cylinder $x^2 + y^2=2x$

Triple Integral 1

Triple Integral 2

Gradient/Divergence/Curl?

2D

3D

Green's theorem?

Last updated