matlab 中矩阵 (mxn) 的变化

发布于 2024-12-05 03:49:52 字数 100 浏览 0 评论 0原文

我有一个 mxn 矩阵,我称之为数据。
最后一列由 1 到 7 之间的值组成。
我想在该列中找到值 7,并更改与值 7 同一行的另一列的值。

我该怎么做?

I have an m x n Matrix, which I call data.
The last column consist of values between 1 and 7.
I want to find the value 7 in that column , and change the values of the other column which are in the same row as the value 7.

How can i do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

琴流音 2024-12-12 03:49:52
idx_row = find(data(:,end) == 7);
data(idx_row,:) == data(idx_row,end);
idx_row = find(data(:,end) == 7);
data(idx_row,:) == data(idx_row,end);
Smile简单爱 2024-12-12 03:49:52

没有 find 的 Oli Charlesworth 答案的替代版本:

n=6;
% Build random matrix
data=[rand(7,n) (1:7)'];
% Replace row with last column at 7 with vector (1:7)
data(data(:,end)==7,:)=(1:7);

Alternative version of Oli Charlesworth's answer without find:

n=6;
% Build random matrix
data=[rand(7,n) (1:7)'];
% Replace row with last column at 7 with vector (1:7)
data(data(:,end)==7,:)=(1:7);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文