- B(1:end) uses linear indexing. The size of the output is the same as the size of the index (which in your example is a 1xN vector).
- B(:) is a special syntax that always returns a column vector.
If B is a matrix,what is the difference between B(1:end) and B(:)
2 次查看(过去 30 天)
显示 更早的评论
If B=[1 2 ; 3 4]
B(1:end) returns [1 3 2 4] as a row vector and B(:) returns it as a column vector.
What is the difference?
0 个评论
采纳的回答
Stephen23
2020-1-6
编辑:Stephen23
2020-1-6
Given a matrix B:
Loren Shure's blog explained the first syntax as "C = A(B) produces output the size of B unless both A and B are vectors... When both A and B are vectors, the number of elements in C is the number of elements in B and with orientation of A."
See also:
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!