what is the difference between the 2 codes ?
2 次查看(过去 30 天)
显示 更早的评论
回答(1 个)
James Tursa
2021-4-8
编辑:James Tursa
2021-4-8
zeros([2,2]) passes one argument, a 2-element vector [2,2].
zeros(2,2) passes two arguments, the scalars 2 and 2.
The result is the same, a 2x2 matrix filled with 0's.
For a square matrix result, you could also have used a single scalar argument and got the same result:
zeros(2)
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!