for loop outsite functions

조회 수: 2 (최근 30일)
TheDice
TheDice 2021년 4월 12일
댓글: TheDice 2021년 4월 13일
Hello together,
I have two functions. One triggers a measurement and the other plots the measured values. I would like to do this for multiple measurements in this order.
How can I write a for loop outside the two functions and use the loop value in the functions?
Many greetings
  댓글 수: 1
Nicolas Broch
Nicolas Broch 2021년 4월 12일
Hi TheDice,
could you provide a pseudo-code of what you would like to do? Because my thirst thought is that you just would like to add arguments and return values to your functions like that:
while myCondifion
[v1, v2] = fun1();
[v3, v3] = fun2(v1, v2);
end
But I guess you want to do something more complex.
Br, Nicolas

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

답변 (1개)

David Hill
David Hill 2021년 4월 13일
Can't you just put the loop in your pushbutton function and pass the loop variable to your other functions?
function Messungstarten_ButtonPushed(app, event)
for k=1:10
MeasurementStart(app,k);
AxesValue(app,k);
end
  댓글 수: 1
TheDice
TheDice 2021년 4월 13일
and then you use the k as a variable in the function? Like this:
function MeasurementStart(app)
app.measurement.SampleThickness = app.Matdicke(k);
end

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

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by