Let's say I have some function import_data() and inside of this function I am creating 2 variables: response_values and file_to_get
file_to_get = uigetfile({'*.csv*'}, 'Select the CSV File',...
'\\pfile01thn\bbruffey$\My Documents\analysis data\full files\...
Raw Stats Data full file only');
response_values = zeros(numel(C),numCols);
for i=1:numel(C)
v = textscan(C{i}, '%s', 'Delimiter',',');
v = str2double(v{1}(4:end));
response_values(i,1:numel(v)) = v;
end
I then need these variables passed into another function MS_Banding_Streaking()
How could this be done? (I'm using globals at the moment which is extremely bad practice.
input_data()and then pass them toMS_Banding_Streakingin the standard way as in my answer?