Matlab 中的列选择
是否可以仅选择矩阵的特定列?例如,我有一个 10x100 形状的矩阵,我只想得到这 4 列:231、82、12、493。
Is it possible to select only particular columns of a matrix? E.g. I have a 10x100 shaped matrix and I only would like to get these 4 columns: 231, 82, 12, 493.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这是可能的。如果您的矩阵名为
A
,则A(:, [3,7,12,89])
将检索编号为 3、7、12 和 89 的列。Yes, it is possible. If your matrix is named
A
thenA(:, [3,7,12,89])
will retrieve the columns numbered 3, 7, 12, and 89.