Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
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