passing argument between functions

조회 수: 2 (최근 30일)
Elias Moubayed
Elias Moubayed 2021년 6월 27일
답변: Walter Roberson 2021년 6월 27일
i have 2 functions both don't have input arguments they take inputs using input functions
function [t,v] = polystep()
x = input(prompt1);
y = input(prompt2);
z = input(prompt3);
and
function ppp = polysys()
x1 = input(prompt1);
y1= input(prompt2);
z1 = input(prompt3);
i want to call polytep in polysys and give x,y,z the values of x1,y1,z1. is there any way to do this ?

채택된 답변

Bhaskar R
Bhaskar R 2021년 6월 27일
편집: Bhaskar R 2021년 6월 27일
Assign x, y, z output of polystep, that can make your requirement possible
function [t,v, x, y, z] = polystep()
x = input('prompt1');
y = input('prompt2');
z = input('prompt3');
Then
function ppp = polysys()
[~,~, x1, y1, z1] = polystep();
  댓글 수: 2
Elias Moubayed
Elias Moubayed 2021년 6월 27일
i tried it and it didn't work when it reached polystep it asked again for the inputs
Bhaskar R
Bhaskar R 2021년 6월 27일
Have you removed following statements in polysys function ?
x1 = input(prompt1);
y1= input(prompt2);
z1 = input(prompt3);

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

추가 답변 (1개)

Walter Roberson
Walter Roberson 2021년 6월 27일
Yes, it is possible without modifying polystep() or polysys() . However, doing so would be a Bad Idea that would interfere with using input() for other purposes: You would have to replace MATLAB's input() function with a different function that took note of what prompt was passed in and used it to decide whether to make a real input() call (and memorize the results) or else instead pull back one of the recorded values. The code would have to be aware of what the form is of the prompts for the two different functions in order to be able to figure out whether the prompt it was passed should be treated as a new request or else to return one of the previous values that it memorized.
I recommend against this approach in any form.
Instead you should modify your existing functions to only prompt once and then pass the results around as needed, the way that @Bhaskar R shows.

카테고리

Help CenterFile Exchange에서 Data Type Conversion에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by