std exception 'class std::out_of_range' : 'invalid unordered_map<K,T> key' was caught

조회 수: 20 (최근 30일)
Hamza
Hamza 2025년 3월 24일
답변: Spruha 2025년 3월 26일
Hello all,
I use simulink 2020b and when i run my model and it reach the initializing step I get the error " std exception 'class std::out_of_range' : 'invalid unordered_map<K,T> key' was caught ", it doesn't even show where the error is from or which block,
any Idea how to approach this error ?
  댓글 수: 2
Amish
Amish 2025년 3월 25일
Can you share the model or exact error message? Some screenshots might help understand the issue better.
Hamza
Hamza 2025년 3월 25일
편집: Hamza 2025년 3월 25일
I can't share the model but this is the Error I get after compiling and the start of initializing

댓글을 달려면 로그인하십시오.

답변 (1개)

Spruha
Spruha 2025년 3월 26일
Hi Hamza,
The error "class std::out_of_range": "invalid unordered_map<K,T>key" means that the model is trying to access a key in an unordered_map that does not exist. This issue often occurs in complex models that contain nested subsystems or several data dictionaries. Without the model, I can only suggest potential causes.
Possible causes can be:
  • When there is complex interaction between nested subsystems, it may lead to timing issues where one subsystem is trying to access data before it's been generated by another.
  • A block might be trying to access data in the unordered_map before the data is inserted, this data dependency can lead to an invalid key error.
  • When there is custom S-Functions or Embedded MATLAB Functions with internal unordered_map implementation, there could be logic errors or incorrect interactions with other data structures
You can try these to fix the error:
  • Verify your model's subsystem relationships, initialization, and data flow.
  • To identify the problem, use displays, scopes, and limited simulation stepping.
  • Check for logical problems in the custom blocks.
Hope this helps!

카테고리

Help CenterFile Exchange에서 Event Functions에 대해 자세히 알아보기

태그

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by