Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

How to load values inside one push button to another push button?

조회 수: 1 (최근 30일)
Radhika
Radhika 2013년 12월 20일
마감: MATLAB Answer Bot 2021년 8월 20일
Hi Team,
I want some of the calculated values in one push button to be used in another push button. How can i perform this action. Is it needed to load to workspace and the use it again?
All0 = [C0, V0, T1t0, P1t0, PAA0];
All = [All; All0];
C = All(:,1);
V = All(:,2);
T1t = All(:,3);
P1t = All(:,4)+All(:,5);
I want the above values to be used in another push button.
Please help me solving this.

답변 (1개)

Walter Roberson
Walter Roberson 2013년 12월 20일
  댓글 수: 2
Radhika
Radhika 2013년 12월 20일
편집: Radhika 2013년 12월 20일
I tried assigning
C = All(:,1);
handles.C=C;
and again tried using its value in another push button like
C=handles.C;
Its not working
Radhika
Radhika 2013년 12월 20일
I could solve it. Thanks a lot Walter

이 질문은 마감되었습니다.

태그

Community Treasure Hunt

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

Start Hunting!

Translated by