How to refer to multiple separate columns?

27 次查看(过去 30 天)
B =
15 12 9 6 3
2 4 6 8 10
6 12 18 24 30
How do I refer to columns 1 and 3? I know that:
ans = B(:,1:3)
will give me columns 1 through 3, but how do I get just columns 1 and 3 without column 2 in the middle? Thanks!

采纳的回答

KSSV
KSSV 2019-2-20
编辑:KSSV 2019-2-20
B(:,[1 3])
Or
B(:,1:2:3)
Or, USe logicals
idx = logical([1 0 1]) ;
B(:,idx)

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by