How to resolve this error "illegal rate transition found" of ANN block in Simulink Real-Time workshop

6 views (last 30 days)
I used nftool to create ANN simulink block to be used in Real-Time workshop. A problem appeared in the ANN block after running the building Real-Time target. the error message is "illegal rate transition found" - sample time [1 0] of nn is different from sample time [0.001 0] of its source.
Knowing that the sampling rate of the training data is 0.001, and the Real-Time system sampling rate is 0.001 as well..

Accepted Answer

Nitin Kapgate
Nitin Kapgate on 18 Sep 2020
It appears that the sample time for “nn” is set to [1 0] while that for its source is set to [0.001 0]. In your case, changing the “sample time” for “nn” to [0.001 0] should resolve your issue. Here is a guide that will help you to resolve the Rate Transition issues in Simulink.
  1 Comment
Zakarya Omar
Zakarya Omar on 19 Sep 2020
thanks for your response
I 've solved the issue by setting the sampling time of the internal blocks of ANN simulink block to either 0.001 or (-1) inherent , and it worked..

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!