I have a matrix with elements both real and complex.I want to find Max value within a column of that matrix ,,ignoring all the complex element in that column.
1 view (last 30 days)
Show older comments
Eg. If in a particular column of matrix suppose elements are ( 1 ,2 ,3+2i) then I want to find the max ignoring (3+2i) means my answer should be 2
0 Comments
Answers (1)
Image Analyst
on 1 Jun 2023
Try this:
v = [1; 2; 3+2i]
goodRows = imag(v) == 0
theMax = max(v(goodRows))
0 Comments
See Also
Categories
Find more on Matrix Indexing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!