Obtener variable de entorno en MATLAB

En este artículo, vamos a discutir «Obtener la variable de entorno», que se puede hacer usando la función getenv() . La función getenv() se utiliza para obtener la variable de entorno del sistema operativo.

Sintaxis:

value = getenv(name)

Parámetros: esta función acepta un parámetro de nombre de parámetro.

  • nombre: Este es el nombre especificado por el cual se buscará la variable ambiental.

Valor devuelto: Devuelve la variable de entorno del sistema operativo.

Ejemplo 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')

Producción

ans = C:\GFG

Aquí, la función getenv() devuelve el nombre de la variable ambiental actual «C:\GFG».

Ejemplo 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')

Producción

ans = D:\geeksforgeeks\gfg

Publicación traducida automáticamente

Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *