extracting a particular element from a matrix
显示 更早的评论
Hi all,
I have a column matrix A (with some common elements in it) and another column matrix B, I have added both the matrices (let the final matrix formed is C). Now I want to extract that element from C, which is formed by the max. value among common elements in A and its corresponding element in B
Suppose
A=[1
2
5
5
10
10
10]
B=[1
3
4
5
7
1
6]
Please help to have my answer as 17 from (5th element of A + 5th element of B
Here both A & B are user defined thus the size and index values may differ
6 个评论
madhan ravi
2019-2-22
why not just:
[Value,Index]=max(A+B)
TADA
2019-2-22
I Didn't Understand Exactly What you want.
Are You Trying To Find The Maximal Value Of C, I.E 17, Or The Maximal Value For Each Group Of Numbers In A, I.E [2; 5; 10; 17] Corresponding To The Number In A: [1; 2; 5; 10]
What Have You Tried So Far?
Also I Have To Ask, Is The Next Number In A 17?
Jan
2019-2-22
@madhan: I assume your code is the solution. Please post it as answer.
madhan ravi
2019-2-22
@Jan: Done :-)
SATYA BHATT
2019-2-23
madhan ravi
2019-2-23
编辑:madhan ravi
2019-2-23
You say max but why do you say a(12) & a(13) , completely vague and unclear. See if maxk() does your job.
回答(2 个)
madhan ravi
2019-2-22
[Value,Index]=max(A+B)
Jan
2019-2-25
A bold guess:
index = (A == max(A));
A(index) + B(index)
类别
在 帮助中心 和 File Exchange 中查找有关 Matrix Indexing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!