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
convert/array - 配列に変換
使い方
convert(object, array)
パラメータ
object - リスト、表、配列
説明
関数 convert/array は、リスト、表、配列を配列へ変換します。
入力オブジェクトが配列の場合、convert/array はスパースでない表示を返します。
例
convert([[1,2],[3,4]],array);
A := linalg[randmatrix](3,3,symmetric): lprint(%);
array(symmetric,1 .. 3, 1 .. 3,[(1, 3)=-35,(1, 1)=-85,(1, 2 )=-55,(2, 2)=-37,(2, 3)=97,(3, 3)=50])
convert(A,array): lprint(%);
array(1 .. 3, 1 .. 3,[(1, 3)=-35,(1, 1)=-85,(3, 2)=97,(1, 2 )=-55,(3, 1)=-35,(2, 1)=-55,(2, 2)=-37,(2, 3)=97,(3, 3)=50] )
参照:
array, convert[table], convert[list], convert[listlist]
Download Help Document