2D Lookup Table Block in Simulink Resulting in Error: Invalid setting for parameter 'Breakpoin​tsForDimen​sion1'

8 ビュー (過去 30 日間)
Hi. I am trying to figure out how to use a 2D lookup table in Simulink. So I created the following arbitrary table:
Data:
Breakpoint1:
Breakpoint2:
And when I try to use the Lookup Table block in Simulink, it gives me the following error:
I would appreciate it if someone could help me fix the error.

採用された回答

madhan ravi
madhan ravi 2023 年 12 月 30 日
編集済み: madhan ravi 2023 年 12 月 30 日
table_data = yourdata; % should be an array not a table
breakpoints1 = (1 : 5).'; % should be an array not a table
breakpoints2 = 1 : 5; % should be an array not a table
  1 件のコメント
madhan ravi
madhan ravi 2023 年 12 月 30 日
your datas are in table() form convert them to array format by doing
table_data{:, :}
breakpoints1{:, :}
breakpoints2{:, :}
in the respective dialog boxes

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

その他の回答 (0 件)

カテゴリ

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

製品


リリース

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by