Adding variables from function to workplace - Output not working
6 次查看(过去 30 天)
显示 更早的评论
Hi there,
I'm trying to add the variables within this function to my workplace so that I can use them in subsequent functions. I don't quite understand why it isn't doing this (I've added it as an output in the function line). Any ideas?
Thanks a bunch!
function [site, numyr, year_start, year_end, years, sitedata]=call_up
%Loading in one site-year and appending data to single matrix for multiple
% years.
%load files
clc;
clear all;
pwd
fuf(pwd, 'detail')
fn=fuf(['/Users/katharynwoods/Documents/MATLAB/flux_sensitivity_analysis/flux_anom_scripts/flux_data/WSA/US-FR2/*daily*.mat'],'detail')
load(char(fn{1}))
%Extract variables names
pieces = regexp(fn, '\/', 'split');
p=pieces{1};
site = p{11};
q = regexp(site, '\.', 'split');
sitename = q{1};
numyr=length(fn);
year_start=str2num(q{2})
year_end=year_start+numyr-1
years=year_start:1:year_end;
fix years
v=([sitename,'.',int2str(years(1)),'.synth.daily.mat']);
eval(['load ' v])
y_tot=data_d;
clear v
for i=2:numyr
% Create file names to load
v=([sitename,'.',int2str(years(i)),'.synth.daily.mat']);
eval(['load ' v])
% Append data to full matrix
y_tot=[y_tot;data_d];
clear v
end
sitedata=y_tot;
%save
save sitedata
end
0 个评论
采纳的回答
the cyclist
2013-6-10
编辑:the cyclist
2013-6-10
When you call the function from the workspace, do you include the output functions there as well, such as
[site, numyr, year_start, year_end, years, sitedata] = call_up
5 个评论
the cyclist
2013-6-10
编辑:the cyclist
2013-6-10
There are multiple ways of getting lots of variables out of a function without needing to explicitly list them all. One way is to use the "varargout" functionality: http://www.mathworks.com/help/matlab/ref/varargout.html. Another would be to put the variables in a structure, and then output the structure. Another (but slow and probably dumb) way would be to write the variables to disk, and then load them from disk again. Another solution mentioned global variables, but as you point out, that is probably not going to work for you.
更多回答(1 个)
Pourya Alinezhad
2013-6-10
编辑:Pourya Alinezhad
2013-6-10
hi, well,we know that functions don't share variables with workspace,if you want to use variables in several functions you can declare them as GLOBAL variables in all functions.for example write "global x" in 2 functions and you will see that this variable is the same in both. you can also use "Persistence " to make the variable hold it's past value from function's last call.
bear in mind that if you return a variable from a function to workspace,the another function can't see them in workspace.
2 个评论
Pourya Alinezhad
2013-6-10
so you can call the function with left hand variables available : like this : [out1,out2,out3,out4,out5,out6]=call_up;
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Workspace Variables and MAT-Files 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!