can i pleas be helped on the following code i dnt understand the outpu

1 次查看(过去 30 天)
A=[2 4 10 13;16 3 7 18;8 4 9 25;3 12 15 17]
B=[-1 4 -5 10;6 13 11 -5;-3 12 0 2;2 12 -5 8]
A(4:8)

回答(1 个)

Stephan
Stephan 2021-6-25
编辑:Stephan 2021-6-25
A=[2 4 10 13;16 3 7 18;8 4 9 25;3 12 15 17]
A = 4×4
2 4 10 13 16 3 7 18 8 4 9 25 3 12 15 17
A(4:8)
ans = 1×5
3 4 3 4 12
You need to understand linear indexing in Matlab:

类别

Help CenterFile Exchange 中查找有关 Get Started with MATLAB 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by