Maple Professionel
Maple Académique
Maple Edition Étudiant
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professionel
MapleSim Académique
Maple T.A. - Suite d'examens de classement
Maple T.A. MAA Placement Test Suite
Möbius - Didacticiels de mathématiques en ligne
Machine Design / Industrial Automation
Aéronautique
Ingénierie des véhicules
Robotics
Energie
System Simulation and Analysis
Model development for HIL
Modélisation du procédé pour la conception de systèmes de contrôle
Robotics/Motion Control/Mechatronics
Other Application Areas
Enseignement des mathématiques
Enseignement de l’ingénierie
Enseignement secondaire et supérieur (CPGE, BTS)
Tests et évaluations
Etudiants
Modélisation financière
Recherche opérationnelle
Calcul haute performance
Physique
Webinaires en direct
Webinaires enregistrés
Agenda des évènements
Forum MaplePrimes
Blog Maplesoft
Membres Maplesoft
Maple Ambassador Program
MapleCloud
Livres blancs techniques
Bulletin électronique
Livres Maple
Math Matters
Portail des applications
Galerie de modèles MapleSim
Cas d'Etudes Utilisateur
Exploring Engineering Fundamentals
Concepts d’enseignement avec Maple
Centre d’accueil utilisateur Maplesoft
Centre de ressources pour enseignants
Centre d’assistance aux étudiants
Matlab[defined] - check the existence of a variable in an open MATLAB session
Calling Sequence
defined(M, attribute)
Parameters
M
-
string naming the MATLAB variable to be tested
attribute
(optional) where attribute is one of 'variable', 'function', or 'globalvar'
Description
The command defined determines whether the variable M is defined in MATLAB. By default, when no attribute parameter is specified, the defined command checks whether a variable named M exists in the MATLAB environment.
If the command contains the optional parameter 'function', then defined returns a value of 'true' only if a function named is defined in the MATLAB environment. The option 'globalvar' returns 'true' if the variable M is defined in the MATLAB environment and it is a global variable.
To set a global variable in MATLAB, define the variable as a global by using Matlab[setvar], with the optional parameter 'globalvar' as in the calling sequence Matlab[setvar]("M", value, 'globalvar'). Variables must be declared as global to work with functions that use global variables of the same name.
The defined command establishes whether M exists in the MATLAB session. Executing the defined command returns either 'true' or 'false'.
Examples
Setting a Maple matrix in MATLAB.
The existence of the matrix in MATLAB is now checked.
true
Note here that the matrix defined in Maple is not defined in MATLAB
false
This example assumes that a MATLAB function has been saved in the file example.m
% multiply the input value x by the global variable y
function ret=example(x)
global y
ret=x*y;
20.246
See Also
Matlab, Matlab[evalM], Matlab[getvar], Matlab[setvar], MatlabMatrix
Download Help Document