|
|
|
|
|
mlDeleteVariable (Function) In french: mlSupprimeVariable Deletes a variable from the MATLAB session. tParamètre is array of 1 real = [4]
tRésultat is array of 1 by 1 real = [[123]]
IF NOT mlSetVariable(gnIdSession, "i", tParamètre) THEN
Error("Echec d'écriture de la variable")
RETURN
END
sCodeAExécuter is string = "maRac = sqrt(i)"
SAI_Résultat = mlExecute(gnIdSession, sCodeAExécuter)
tRésultat = mlGetVariable(gnIdSession, "maRac")
IF ErrorOccurred THEN
Trace("Erreur : " + ErrorInfo())
END
Trace("Racine = " + tRésultat[1,1])
Trace("Liste des variables avant suppression : " + mlListVariable(gnIdSession))
mlDeleteVariable(gnIdSession, "i")
mlDeleteVariable(gnIdSession, "maRac")
Trace("Liste des variables après suppression : " + mlListVariable(gnIdSession))
Syntax
<Result> = mlDeleteVariable(<Session identifier> , <Variable name>)
<Result>: Boolean - True if the variable was deleted.
- False otherwise. To get more details on the error, use ErrorInfo with the errMessage constant.
<Session identifier>: Integer Identifier of MATLAB session. This identifier is returned by mlInitialize. <Variable name>: Character string Name of variable to delete.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|