Matlab Project for Linear Algebra Course
조회 수: 7 (최근 30일)
이전 댓글 표시
I need some Matlab help for a Project I'm doing in a Linear Algebra class I'm taking. Could someone help out?

답변 (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])
댓글 수: 0
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
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
참고 항목
카테고리
Help Center 및 File Exchange에서 Annotations에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!