how to call path location in global to a function in matlab?
10 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
hi......i created two functions(add,sub).in sample.m file, i called this two function with below paths.
path_01 = 'C:\Users\Desktop\folder\';
path_02= 'C:\Users\Desktop\folder\add\';
.the input is a .txt file is located in path_01..to access the file,i called this path_01 file globally inside add like below,but the add() function is working here..any ides to solve this??
inside function add.m
function add()
global path_01
......
....
end
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 30 Aug. 2013
Global variables are only treated as global in functions that declare them "global", or in scripts that are run from such functions. When you call upon the function add() you are declaring the variable global within add(), not within the routine that called add().
You can change add.m to be a script, or you can leave add.m as a function but inside the function use
evalin('caller', 'global path_01 path_02')
If you do not change path_01 and path_02 inside of your routines, only use the values, then another way of proceeding is to make the names into functions
function p = path_01
p = 'C:\Users\Desktop\folder\';
end
then any place you use it, such as (e.g.)
cd(path_01)
or (e.g.)
fprintf('Did not find any files in directory %s\n', path_01);
then the function will be called, the string will be returned, and everything will proceed happily, no add() needed, and no global variables needed.
0 Kommentare
Weitere Antworten (2)
David Sanchez
am 29 Aug. 2013
Since add is a matlab built-in function, you should not use it to name your own functions.
If path_01 and path_02 are constant paths, and they will not change in the future, avoid using them as global variables: define them inside your function instead.
function whatever_name_you_choose
path_01 = 'C:\Users\Desktop\folder\';
path_02= 'C:\Users\Desktop\folder\add\';
...
Jan
am 29 Aug. 2013
global variables must be defined as global in each function or script before they are used. Where did you define the value of "path_01" and did you specify it as global there also?
Btw., global variables are a bad programming style, because they provoke errors and impede the debugging. It would be cleaner to provide the folders and input arguments or store them persistently (see "doc persistent") inside a dedicated function and reply them on demand:
function S = GetMyFolder(Name)
switch Name
case '01'
S = 'C:\Users\Desktop\folder\';
case '02'
S = 'C:\Users\Desktop\folder\add\';
otherwise
error('Unknown folder name');
end
Now GetMyFolder('01') replies the wanted folder without the danger of confused globals. Perhaps a more meaningful name than '01' would be useful.
Siehe auch
Kategorien
Mehr zu File Operations finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!