unable to use statistics and machine learning toolbox block in Simulink
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi,
I wanna use the statistics and machine lerning toolbox blocks in the simulink but when i add that the it is showing that , the variable that is the name of the blick is not exist. and for correcting it, it gives some suggetions like load the file into the base workspace but i dont know which file its asking and where its located. i am shearing the screenshort of that massage
댓글 수: 0
답변 (1개)
Steven Lord
2023년 7월 19일
You're using this block. From that documentation page: "Import a trained regression object into the block by specifying the name of a workspace variable that contains the object." You need to specify the name of a trained regression object (created using a function like fitrlinear) that is in the workspace. See the "Create Simulink Model" section of the example included on that block's documentation page for a picture of how to create that regression object and specify it as a property of that block.
댓글 수: 3
Steven Lord
2023년 7월 22일
The first section of this example contains code that defines a variable named linearMdl which, as the example states, is a RegressionLinear object. The second section creates a Simulink model with the block you're trying to use in it. If you double-click on that block the Block Parameters dialog box shown in the example opens up.
In the text box where the picture shows the word linearMdl, right next to "Select trained machine learning model", is where you'd type the name of the model variable that you had created in your workspace.
참고 항목
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!