필터 지우기
필터 지우기

Plot data from workspace into simulink

조회 수: 3 (최근 30일)
Meddour Aissam riad
Meddour Aissam riad 2020년 6월 7일
답변: Ameer Hamza 2020년 6월 8일
Hi there,
Simple question, i have a vector x let's say X= [ 12 13 16 29 49] , i want to plot it with a time array t=[ 1 2 3 4 5]
those two arrays are saved into worskapce , how to call them into simulink without getting this kind of results (i know i have a problem with the time array but i really don't know how to deal with it)

채택된 답변

Ameer Hamza
Ameer Hamza 2020년 6월 8일
Define it like this in workspace
t = [1 2 3 4 5];
X = [12 13 16 29 49];
data = [t.' X.'];
and then use From Workspace: https://www.mathworks.com/help/releases/R2020a/simulink/slref/fromworkspace.html block in Simulink. In the Data field, write the variable name 'data'.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Scopes and Data Logging에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by