Matlab中NULL矩阵和空矩阵的区别
我有一个非常简单的问题 - MATLAB 中 NULL 和空矩阵之间的区别?
NULL 情况:a = null(1) --> a 是 1x0 矩阵 空案例:a = [] --> a 是 0x0 矩阵
谢谢!
I have a very simple question - Difference between NULL and empty matrices in MATLAB?
NULL CASE: a = null(1) --> a is 1x0 matrix
EMPTY CASE: a = [] --> a is 0x0 matrix
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
MATLAB 中没有真正的“null”,只有 空或非空数组。您所指的 null 是一个函数 NULL 计算矩阵零空间的正交基。它是一个线性代数函数,而不是用于初始化矩阵的函数。
There is no real "null" in MATLAB, only empty or non-empty arrays. The null you are referring to is a function NULL which computes the orthonormal basis for the null space of a matrix. It is a linear algebra function, not a function for initializing a matrix.