What does A=A((x:y,:) mean?
2 次查看(过去 30 天)
显示 更早的评论
Hi! So I try tu run my program that include A=A((x:y,:)) in it but it said Unrecognized function or variable 'a'. I thought it was for declaring zeros matrix? I really have no idea for this
0 个评论
回答(2 个)
madhan ravi
2020-7-19
x = 1
y = 2
A = [1, 2;
3, 4;
5, 6]
A(x:y, :) % read about matrix indexing
doc zeros % to create a zeros matrix
0 个评论
Abhishek Gangwar
2020-7-19
Okay, so first check that you had defined matrix 'A' in you code before trying to access it and use single paranthesis for indexing, this should be "A=A(x:y, :)".
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!