Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Mesh Command

0 views
Skip to first unread message

Jafar Sadjadi

unread,
Feb 5, 1998, 3:00:00 AM2/5/98
to

Hi every body,
Here is a sample to see how a mesh command may work..
-Jafar

% Plot
clear all;
X=rand(5);
Y=rand(5);
% Original Function f(x) = 2*x1^3-6*x1*x2*(x1 - x2 - 1)
z=(2*(X^3))-(6*X*Y*(X - Y - 1));
surf(z);
axis('ij');
xlabel('x1 axis');
ylabel('x2 axis');
zlabel('z axis');


0 new messages