在 MATLAB 中设置环境变量
借助 setenv()函数设置环境变量。 setenv()函数用于设置操作系统环境变量的指定值。这里环境变量“name”将被替换为“value”,其中“name”和“value”是它的参数。
句法
setenv(name, value)
参数:该函数接受两个参数,如下图所示:
- name :这是指定的现有环境变量。
- values:这是替换“name”变量的指定变量。
返回值:它返回被替换的变量名。
示例 1
Matlab
% MATLAB code for environment variable
% GFG has been created and later replaced
% with "C:\GFG" using the setenv() function
setenv('GFG','C:\GFG');
% Getting the current variable name
getenv('GFG')
Matlab
% MATLAB code for setenv() function to
% set the value D:\geeksforgeeks\gfg over
% the variable "a"
setenv('a','D:\geeksforgeeks\gfg');
% Getting the current variable name
getenv('a')
输出:
示例 2
MATLAB
% MATLAB code for setenv() function to
% set the value D:\geeksforgeeks\gfg over
% the variable "a"
setenv('a','D:\geeksforgeeks\gfg');
% Getting the current variable name
getenv('a')
输出: