Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 MATLAB 中遇到问题。我有一个 NxM 逻辑数组,L但如果我这样做了,dim(L)我会得到:
L
dim(L)
Undefined function or method 'dim' for input arguments of type 'logical'
size也不行。length有效,但只给我列数而不是行数。奇怪的是,在 Matlab 工作区中,它正确显示为 NxM 逻辑数组。
size
length
有谁知道如何获取逻辑数组的行数和列数?
提前致谢。
如果你想要行数和列数,size是你最好的选择:
[nRows,nCols] = size(L)
如果失败,clear size请先使用,因为您可能不小心在工作区中有一个同名的变量。
clear size