Matlab Project for Linear Algebra Course
显示 更早的评论
I need some Matlab help for a Project I'm doing in a Linear Algebra class I'm taking. Could someone help out?

4 个评论
Matt Kindig
2012-7-27
What have you done so far with your assignment? Where are you specifically stuck in Matlab? Can you show us your code so far?
Hosnel
2012-7-27
Yash
2012-7-27
surface is a type of 3D plot you have to do for the mentioned question for the 3 parameterts mentioned you have to plot the surface plot, its a type of 3D plot like like plot where u plot plot(x,y) it has three parameters (x,y,z)and you can animate by holding
Hosnel
2012-7-30
回答(2 个)
Sean de Wolski
2012-7-27
编辑:Sean de Wolski
2012-7-27
Since you seem to be looking for the ez way out:
syms x y
ezsurf(2*sin(x*y),[-2.5 2.5])
Luffy
2012-7-27
What is M(Y),M(R),M(P) in part B??
For A) part,
x = -2.5:0.001:2.5;
y = -2.5:0.001:2.5;
z = 2*sin(x.*y);
plot3(x,y,z);
grid on;
13 个评论
Hosnel
2012-7-27
Yash
2012-7-27
surface is a type of 3D plot you have to do for the mentioned question for the 3 parameterts mentioned you have to plot the surface plot, its a type of 3D plot like like plot where u plot plot(x,y) it has three parameters (x,y,z)and you can animate by holding
Walter Roberson
2012-7-29
The best way to find out what the professor wants for (B) is to ask the professor.
Walter Roberson
2012-7-30
The images are no longer available from photobucket.
Hosnel
2012-7-30
Walter Roberson
2012-7-30
Okay, so what are the M matrices ?
Hosnel
2012-7-30
Oleg Komarov
2012-7-30
@Hosnel: there is a huge difference between helping and solving from scratch an entire homework YOU are supposed to hand in.
Walter Roberson
2012-7-30
You still have not indicated what M is.
Sean de Wolski
2012-7-30
We're more than willing to help but not more than willing to doit4u.
What have you done so far? What effort have you expended on your project?
Walter Roberson
2012-7-30
We can invent any number of meanings for what M subscript gamma means, but the probability that our inventions will happen to match what your professor wants is somewhat low. If you have not found out yet what the M refer to, it would probably be more effective to ask your professor than for us to give you a meaning that later turns out to be something rather different than what was desired. If you have found out what the M refer to, it would definitely be more effective for you to tell us than for us to continue to guess.
Note: This site is for questions about MATLAB, not for questions about linear algebra. When you have the meaning of your assignment sorted out, and have specific questions about how to translate that meaning into MATLAB notation, then we can help out with that.
One step: the MATLAB notation for the matrix multiplication of A with B, is A * B
类别
在 帮助中心 和 File Exchange 中查找有关 Annotations 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

