Adept Scientific - English
The world's best software and hardware for research, science and engineering.
flag arrow
clearclear

 Adept Store | register Join My Adept | Flags  
Adept Scientific | Amor Way | Letchworth Garden City | Herts | SG6 1ZA | Tel: +44 (0)1462 480055  
UKdedksvnofi
Home
Products
Training
Events
 Buy Online
Downloads
Academic Discounts
Support
My Adept
International |  About Us |  Adept Scientific Blog |  Contact Us |  Press Room |  Jobs
Adept Scientific on Twitter Adept Scientific on LinkedIn


The Next Steps

• Ask us a question
• Maple Product Tour
• Buy Maple Now
• View Maple Pricing
• Download a Brochure
• Request a Brochure
• Request an Evaluation
• Meet Our Team
• Read our RSS Feeds

Learn More

Maple Home
Maple 15 Professional
Maple 15 Academic
Maple 15 Student Use
What's New in Maple 15
Maple Features
Maple History
Recorded Online Seminars

MapleSim
MapleNet
Maple T.A.
BlockImporter™
Maple Toolboxes

Maple Rave Reviews
Maple Study Guides
Books about Maple
System Requirements

Maple Home
Maple 15 Professional
Maple 15 Academic
Maple 15 Student Use
What's New in Maple 15
Maple Features
Maple History
Recorded Online Seminars

MapleSim
MapleNet
Maple T.A.
BlockImporter™
Maple Toolboxes and
Connectors


Maple Rave Reviews
Maple Study Guides
Books about Maple
System Requirements

Latest Information

New Features: Professional
New Features: Academic
Maple Features
The Maple Reporter Online

Service & Support

Maple Primes
blogs, forums etc

Elite Maintenance Program
Application Centre
Powertools
Search the Knowledge Base
Technical Support request

List Archives >  Maple User Group List Archive >  Archive by date >  This Month By Date >  This Month By Topic

[MUG] Re: Variables in an array

Search email archive for  

[MUG] Re: Variables in an array
Author: Maple Group    Posted: 31/03/2000 15:10:42 GDT
>> From: Maple Group

On Tue, 28 Mar 2000, Jonathan Dentch wrote:

|> I need to create an array of values. However, Maple
|> won't store the values when I use the variable q[].

|>
C:=array(1..11,1..1,[[500.],[q[1]],[q[2]],[q[3]],[q[4]],[q[5]],[q[6]],[q[7]],[q[
8]],[q[9]],[123.23]]);
|> > q:=seq(100./(360*i*0.25),i=1..9);

|> I wish C to be all numerics, not variables. Please
|> advise.

-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-

Date: Wed, 29 Mar 2000 14:34:18 -0500 (EST)
From: Edwin Clark
To: Jonathan Dentch
Subject: Variables in an array


Try this, which, by the way, is an easier way to
set up the matrix:

restart:
> with(linalg):Warning, new definition for norm
Warning, new definition for trace
> C:=transpose(matrix([[500.,seq(q[i],i=1..9),123.23]]));

Now you want to substitute certain values for
the variables q[i]. This can be done thusly:


qvalues:=seq(100./(360*i*0.25),i=1..9);

> subs(seq(q[i]=qvalues[i],i=1..9){},eval(C));


------------------------------------------------------
W. Edwin Clark
Department of Mathematics, University of South Florida,
4202 East Fowler Avenue, PHY 114, Tampa, FL 33620-5700
http://www.math.usf.edu/~eclark/
------------------------------------------------------



-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-

Date: Wed, 29 Mar 2000 14:55:06 -0800 (PST)
From: Robert Israel
To: Maple Users Group
Subject: Variables in an array




Try this (after assigning C and q as above):

> C:= map(eval,C);

Robert Israel
Department of Mathematics http://www.math.ubc.ca/~israel
University of British Columbia
Vancouver, BC, Canada V6T 1Z2



-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-

Date: Thu, 30 Mar 2000 10:54:40 +0200
From: Preben Alsholm
To:
Subject: Variables in an array

The following should do it:

C1:=map(eval,C);

Preben Alsholm
Technical University of Denmark


-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-

Date: Thu, 30 Mar 2000 12:04:45 +0200
From: Barsuhn
Subject: Variables in an array
To:

Dear Jonathan,
assignments outside an array, table or matrix do not directly cause
alterations inside these data structures. By redefining your array C via

C:=map(eval,C);
your values of the q[i] have entered C, as you may see by the
statements
print(C); or eval(C);
All the best Jurgen
--
-------------------
Prof. Dr. Jurgen Barsuhn
Fachhochschule Bielefeld
University of Applied Sciences
Fachbereich Elektrotechnik und Informationstechnik
D-33511 Bielefeld
-----------




-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-

Date: Thu, 30 Mar 2000 13:26:01 +0200
From: Adri van der Meer
To:
Subject: Variables in an array

This is an instance of the "last name evaluation" in
arrays and tables. You can force the evaluation of the
elements of C to values by:

> C := map(eval,C):


--
A. van der Meer
Dept. Applied Mathematics
University of Twente Phone +31 (53) 4893427
P.O. Box 217 Fax +31 (53) 4894824
7500 AE Enschede




-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-

Date: Thu, 30 Mar 2000 09:58:02 -0500
From: Gyrya Pavel
To:
Subject: Variables in an array

Use

> q:=[seq(100./(360*i*0.25),i=1..9)];





[View Complete Thread]



Previous by date: [MUG] Re: Error Function, Maple Group
Next by date: [MUG] Re: Increasing the size of Maple plots..., Maple Group
Previous thread: [MUG] Variables in an array, Jonathan Dentch
Next thread: [MUG] Increasing the size of Maple plots..., Rafael Espericueta



Ready to buy?

For more pricing information:
Visit our webstore, call us on +1 800 724 8380 or email us at info@adeptscience.com

Featured Downloads

Maple 15 & MapleSim 5 Professional Brochure
Maple 15 Academic Datasheet
Maple 15 & MapleSim 5 Brochure - Academic Brochure
Maple 15 New Features data sheet
Maple 15 New Features - Flyer
Maple Whitepaper: Driving Innovation - How mathematical modeling and optimisation increase efficiency and productivity in vehicle design.
MapleSim Whitepaper: Technological Superiority in Multi-Domain Physical Modeling and Simulation

Latest Downloads

Maple Case Study: The Changing Face of Robotics
Maple Application Brief - Analyse the Path of a Liquid-Handling Robot
Maple Player for iPad - App
Maple Player for iPad - Datasheet
Case Study - Multi-Domain Modelling Critical to Unmanned Vehicle Designs

Product Reviews

"Without the Maple software, we would have to spend weeks generating the equations of motion for every experiment. Then the chances that we did it right would basically be near zero. There would always be a mistake somewhere. It is very difficult to set up a dynamic motion model by hand."
- Jean-Claude PiedBeouf, Ph.D Manager of Robotics, Canadian Space Agency

"Its very good - highly accurate and easy to use. The speed of Maple allows me to change equations and quickly reintegrate them into the application, so more possibilities can be explored to achieve the precise effect desired."
Shawn Neely, Senior R & D Director for PDI/Dreamworks

Latest News

NASA’s Jet Propulsion Laboratory begins widespread adoption of Maplesoft technology
NASA’s Jet Propulsion Laboratory begins widespread adoption of Maplesoft technology
Latest release marks the 10th anniversary of Maple T.A.
Maple Case Study: The Changing Face of Robotics
Maple Application Brief - Analyse the Path of a Liquid-Handling Robot
adept

Top of the Page

Popular Links: ChemDraw | ChemOffice | Data Acquisition | Data Analysis | EndNote | Maple | MapleSim | Mathcad | MathType | Quality Analyst | Reference Manager | VisSim

EU ePrivacy Directive | Our Privacy and Terms and Conditions Statement
All Trademarks Recognised. Copyright © 2012, Adept Scientific plc.
Site designed and maintained by Lyndon Ash

Adept Scientific | Amor Way | Letchworth Garden City | Herts | SG6 1ZA | Tel: +44 (0)1462 480055