how to Write a function that takes a file name as its only argument (input value) in Matlab ?
조회 수: 3 (최근 30일)
이전 댓글 표시
using physionet.orag to download 128 sapling frequency ECG files.
- write a function that takes file name as only argument (input value)?
댓글 수: 0
답변 (1개)
Maik
2022년 11월 5일
편집: Maik
2022년 11월 5일
You can save the file as a function with no inputs and pass its output as inputs to the second function.
1st Function = sumOfNum
2nd Function = sumPrint
sumOfNum is passed as input to sumPrint. You can save the sumOfNum in separate .m file with the function name.
Basically here we will be passing sumOfNum.m as input to sumPrint
sumPrint(sumOfNum());
function sumPrint(firstFuncOut)
firstFuncOut = firstFuncOut/2;
disp(firstFuncOut);
end
function firstFuncOut = sumOfNum()
firstFuncOut = 100;
disp(firstFuncOut);
end
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 File Operations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!