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
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 个评论

请先登录,再进行评论。

更多回答(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