How can I change the value of Y in the columns whare the value of X is zero in matrix ?

1 次查看(过去 30 天)
I have the large column of matrix XY for example
X Y
1 5
0 10
3 26
0 5
if I want to change the value of Y in the columns whare the value of X is zero like this
X Y
1 5
0 1.5
3 26
0 1.5
Which the command I need to use ?

采纳的回答

Alan Stevens
Alan Stevens 2021-11-4
Like this
XY = [1 5
0 10
3 26
0 5];
XY(XY(:,1)==0,2) = 1.5
XY = 4×2
1.0000 5.0000 0 1.5000 3.0000 26.0000 0 1.5000

更多回答(0 个)

类别

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

标签

产品


版本

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by