How to index variables from column B based on column A condtion
1 次查看(过去 30 天)
显示 更早的评论
I have an array of variables with 2 columns.
A containing input and B containing output.
looks something like this
A=[ 200;200;200...;400;400;...;600;600]
B[5.5;6.5;6.0...;8.5;9.6;....;14.3;18.4]
how do i index the values in column B into seperate arrays based on column A values?
im sure it involves logical indexing just not sure the procedure
0 个评论
采纳的回答
Cris LaPierre
2022-3-22
Logical indexing and assignment
A = [1 2];
B = [3 4];
% assign results to new variables
C = B(A==1)
D = B(A==2)
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrix Indexing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!