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
ContextMenu[CurrentContext][Queries][Run] - run query on selected object
Calling Sequence
Queries[Run](nm, expr)
Parameters
nm
-
string; name of query
expr
(optional) anything; object to which the query is applied, embessed in a list
Description
The Queries[Run] command returns the result of applying the query named nm to the contents of the list expr. It may be called from within entry generators (see EntryGenerators) or from within other queries.
The parameter nm is the name of the query to be run. The parameter expr is the object (embedded in a list) to which the query is applied; if omitted, the selected object (also embedded in a list) is used. Note that the object must be embedded in a list to allow handling of expression sequences, as Queries[Run] only takes a single fixed argument for the object the query applies to.
Examples of Queries[Run]
with(ContextMenu[CurrentContext]):
Run the "D.E." query that determines whether an equation is a differential equation.
Queries[Run]("D.E.", [diff(y(x),x,x) = cos(2*x)/sin(2*x)*diff(y(x),x)-2*y(x)]);
Queries[Run]("D.E.", [x^2+5*y=19]);
Run a query that checks whether an expression sequence has booleans.
Queries[Run]("no bools", [1, 2, x, Matrix(<<1,2>>)] );
Queries[Run]("no bools", [1, 2, x, true, Matrix(<<1,2>>)] );
Add a query that determines whether the object has exactly 20 variables using the "NumVars" query.
Queries[Add]("20 vars", proc() evalb(Queries[Run]("NumVars", [args]) = 20) end proc);
Add an entry generator that allows the user to select one of the variables that appears in the right-clicked expression using the "Variables" query.
EntryGenerators[Add]("Variables", proc() local vars; try vars := Queries[Run]("Variables"); [seq([sprintf( "%a", op(i, values) ), [op(i, values)]], i=1..nops(values))]; catch: end try; end proc);
See Also
ContextMenu, ContextMenu[CurrentContext][Queries], Queries/Add, Queries/Get, Queries/List
Download Help Document