필터 지우기
필터 지우기

How can I calculate the average deviation for two values that are in two separate variables files?

조회 수: 1 (최근 30일)
I want to calculate the average deviation flow rate per day. The data value is in one variable and the value in the model is in another variable

채택된 답변

Pranavkumar Mallela
Pranavkumar Mallela 2023년 7월 12일
편집: Pranavkumar Mallela 2023년 7월 12일
Hi Francisca,
As per my understanding you want to access a variable in one file that is defined in another. To do this, you can output your variable in one file. Then, access it from the second file by calling a function. To elaborate:
In file 1, where the variable is defined, use the following code:
function myVar = data()
myVar = 100;
end
In file 2, where you want to use the variable, use the following code:
function myFunc()
myVarFromFile1 = data(); % myVarFromFile1 takes the value defined in file 1
end
Hope this helps! Thanks!
  댓글 수: 4
Pranavkumar Mallela
Pranavkumar Mallela 2023년 7월 13일
That's great to hear. If the answer was helpful, please do consider accepting it. Thanks!

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Large Files and Big Data에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by