Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
Comparing correspodning elements from two different matrices with different dimensions
조회 수: 1 (최근 30일)
이전 댓글 표시
I have these two tables and I'm trying to look up the price of each ID from table A to add it to table B in order to calculate the discounted price, I've tried using vectorised codes but I'm struggling with the matrices dimensions as they aren't equal.
A=
ID Price
1 50
2 60
3 70
B=
CuID ID Discount
4 1 10
5 2 20
6 3 30
4 3 40
5 2 50
6 1 60
댓글 수: 1
Mohammad Sami
2020년 5월 21일
You want to use the ismember function to find the corresponding rows in A using the ID in B
답변 (0개)
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!