在 MATLAB 中编写零空间基而不使用 null(A)
我的老师希望我们在 MATLAB 中找到函数零空间的基。这就是确切的问题。
使用MATLAB函数rref和上面的函数lead编写一个MATLAB function N=nullbase(A)
计算矩阵 N,其列构成基础 对于 A 的零空间。您的文件 nullbase.m 不应使用 MATLAB 函数 排名
或null
。
请有人帮助我,谢谢。
My teacher wants us to find the basis of the null space of a function in MATLAB. This is the exact question.
Use the MATLAB function rref and the function lead above to write a MATLABfunction N=nullbase(A)
which computes a matrix N whose columns form a basis
for the nullspace of A. Your file nullbase.m should not use the MATLAB functionsrank
or null
.
Please someone help me, thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在寻找的是 SVD(奇异值分解)。因为这听起来像是一个家庭作业问题,所以我不会透露整个答案,但这个提示应该会有所帮助。 MATLAB 有一个 SVD 函数: http://www.mathworks.com/help/techdoc /ref/svd.html
What you're looking for is the SVD (singular value decomposition). Because this sounds like a homework problem, I won't give away the whole answer, but this hint should help. MATLAB has an SVD function: http://www.mathworks.com/help/techdoc/ref/svd.html