MATLAB

This is a short video tutorial on how to make a word cloud from twitter tweets using MATLAB.

You only need to type in two lines, and you're done!


Updated: 6/6/2018

MATLAB code used to produce this 3D plot:

[x,y]=meshgrid(-10:0.2:10, -10:0.2:10)

z = cos(x).*sin(y-x).*tan(x)

surf(x,y,z)

Search Super AI Search for MATLAB


MATLAB code used to produce this 3D plot:

[x,y]=meshgrid(-10:0.2:10, -10:0.2:10)

z = cos(x).*sin(y-x).*tan(x)+y+x-sin((pi)*(x))

surf(z)

MATLAB code used to produce this 3D plot:

[x,y]=meshgrid(-10:0.2:10, -10:0.2:10)

z = cos(x).*sin(y-x).*tan(x)+y+x-sin((pi)*(x))

a1 = sin(z)

b1 = pi*(a1)

surf(z,a1,b1)

MATLAB code used to produce this 3D plot:

[x,y]=meshgrid(-10:0.2:10, -10:0.2:10)

z = cos(x).*sin(y-x).*tan(x)+y+x-sin((pi)*(x))

a1 = sin(z)

b1 = pi*(a1)

c1 = a1 * b1 - y+x

surf(z,a1,c1)