How can I extract numbers from a column in a matrix dependent on a number in another column ?

6 次查看(过去 30 天)
As stated I need to extract numbers from a column in the following matrix.
I want to log the numbers in column 9 into a vector only when the number in column 4 has the value 2. I tried using an if statment but that got me nowhere and it's been awhile since I have used matlab or done any coding.
Any help is greatly appreciated.

采纳的回答

the cyclist
the cyclist 2020-8-31
编辑:the cyclist 2020-8-31
If your matrix is A, then
output = log(A(A(:,4)==2,9));
In case it is not obvious what that one line of code is going, work from the "inside out":
  • A(:,4) == 2 -- Checks to see if the 4th column is equal to 2, returning a vector of true/false booleans.
  • A(A(:,4)==2,9) -- That vector is then used as a logical index into A, grabbing only the rows that are true, and only the 9th column
  • Then take the (natural) logarithm of those values
If you want to take the log "in place", then do this:
idx = A(:,4)==2;
A(idx,9) = log(A(idx,9));

更多回答(0 个)

类别

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

产品


版本

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by