フィルターのクリア

containers.Map: The number of keys and values must be the same

6 ビュー (過去 30 日間)
Mehdi Jaiem
Mehdi Jaiem 2022 年 5 月 6 日
コメント済み: Walter Roberson 2022 年 5 月 7 日
I have the above mentioned issue when I try to run this code:
keys = [DS.UserNum];
valueSet = [DS.CarNum];
M = containers.Map(keys,valueSet)
UserNum Car Num
1 [123,257,345,235,553]
2 834
3 [111,156]
4 [111,445,642,164]
5 []
--> The number of keys and values must be the same. How can I correct that.

採用された回答

Walter Roberson
Walter Roberson 2022 年 5 月 6 日
valueSet = {DS.CarNum};
  2 件のコメント
Mehdi Jaiem
Mehdi Jaiem 2022 年 5 月 7 日
Thank ! that was it. But this is weird as on the mathwork website you got the following format
keySet = {'Jan','Feb','Mar','Apr'};
valueSet = [327.2 368.2 197.6 178.4];
M = containers.Map(keySet,valueSet)
keySet is put between {} and valueSet between []
Walter Roberson
Walter Roberson 2022 年 5 月 7 日
In that example, the keys are character vectors, and the values are scalar numeric. Character vectors are collections of characters.
In your code, the keys are scalar numeric, and the values are vectors of numeric — collections of numbers.
In both cases, collections use {} and scalars use []

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeStructures についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by