필터 지우기
필터 지우기

how to send data saved in "out1" block to display it to the GUI label element

조회 수: 4 (최근 30일)
hello i am trying to send data saved in the out 1 block to a GUI label element to display it. i am getting an error when i am using this:
properties (Access = public)
Property % Description
Set=0;
temp=0;
end
% Callbacks that handle component events
methods (Access = private)
% Code that executes after component creation
function startupFcn(app)
clc;
clear all;
close all;
instrreset;
sim('PID_control_of_the_SOPDT_PID_testing2');
%%%
app.temp = get_param('PID_control_of_the_SOPDT_PID_testing2/Out1','RuntimeObject');
app.Label_2.Text=num2str(app.temp);
end
the error that i am getting is
Invalid or deleted object.
Error in Project_GUI (line 364)
runStartupFcn(app, @startupFcn)

답변 (1개)

Image Analyst
Image Analyst 2022년 1월 1일
Yes, because you deleted them when you called clear and/or close. Get rid of these lines:
clear all;
close all;
  댓글 수: 2
Joshua Kalima
Joshua Kalima 2022년 1월 1일
yes i did that sir/ma'am but it is still showing the same error.
Image Analyst
Image Analyst 2022년 1월 1일
Then I don't know and I don't have Simulink. Try calling tech support.

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

카테고리

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

제품

Community Treasure Hunt

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

Start Hunting!

Translated by