emadeldeen

Emadeldeen Abdallah

Teadching-Assistant -

Faculty of Computers and Information

Address: Sohag

60

Like
2018-06-12 01:51:04 | 0 | MATLAB
Task 02 -  	3-D Plots
Three-dimensional plots typically display a surface defined by a function in two variables, z = f(x,y) . To evaluate z, first create a set of (x,y) points over the domain of the function using meshgrid. >> [X,Y] = meshgrid(-2:.2:2); >> Z = X .* exp(-X.^2 - Y.^2); Then, create a surface plot. >> surf(X,Y,Z) Read more

2018-06-12 01:48:10 | 0 | MATLAB
Task 01
Print all numbers from 1 to 35 except divided by 7 and 5 Read more