How do I extract a vector of results from a map?
조회 수: 4 (최근 30일)
이전 댓글 표시
Suppose:
X=[1 3 4 7 14];
Y=[0.4 6.2 5.1 0.9 3.8];
myMap=containers.Map(X,Y);
I can write myMap(4) and get the expected result 5.1. If Z=[4] I can write myMap(Z) and get the expected result 5.1. If Z=[4 14], myMap(Z) fails.
Why can't I provide a vector of valid keys and get a vector of values?
댓글 수: 0
채택된 답변
Sean de Wolski
2013년 2월 22일
use the values() methods of the myMap object.
myMap.values({4,7})
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Exploration에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!