📜  在 MATLAB 中获取环境变量

📅  最后修改于: 2022-05-13 01:55:45.157000             🧑  作者: Mango

在 MATLAB 中获取环境变量

在本文中,我们将讨论“获取环境变量”,这可以使用getenv()函数来完成。 getenv()函数用于获取操作系统环境变量。

句法:

value = getenv(name)

参数:此函数接受参数名称参数。

  • name:这是要搜索的环境变量的指定名称。

返回值:它返回操作系统环境变量。

示例 1

Matlab
% MATLAB code for Environment Variable GFG
% has been created and later replaced with "C:\GFG" variable
% Calling the setenv() function
% to replace the "GFG" name
% with value "C:\GFG"
setenv('GFG','C:\GFG');
 
% Calling the getenv() function to
% Get the current environment variable name
getenv('GFG')


Matlab
% MATLAB code for Calling the setenv()
% to set the value
% "D:\geeksforgeeks\gfg" over
% the variable "a"
setenv('a','D:\geeksforgeeks\gfg');
 
% Calling the getenv() function to
% Get the current environment variable name
getenv('a')


输出

ans = C:\GFG

这里 getenv()函数返回当前环境变量名称“C:\GFG”。

示例 2



MATLAB

% MATLAB code for Calling the setenv()
% to set the value
% "D:\geeksforgeeks\gfg" over
% the variable "a"
setenv('a','D:\geeksforgeeks\gfg');
 
% Calling the getenv() function to
% Get the current environment variable name
getenv('a')

输出

ans = D:\geeksforgeeks\gfg