containers.Map: The number of keys and values must be the same
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Mehdi Jaiem
il 6 Mag 2022
Commentato: Walter Roberson
il 7 Mag 2022
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.
0 Commenti
Risposta accettata
Walter Roberson
il 6 Mag 2022
valueSet = {DS.CarNum};
2 Commenti
Walter Roberson
il 7 Mag 2022
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 []
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Data Type Conversion in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!