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
ScientificConstants[GetError] - ScientificConstants オブジェクトに関する不確定性を返す
使い方
GetError( sc_obj )
パラメータ
sc_obj - ScientificConstants オブジェクト
説明
ScientificConstants オブジェクト、つまり Constant() または Element() オブジェクトを与えると、GetError( sc_obj ) コマンドは、適切な単位系におけるそのオブジェクトの不確定性、または「誤差」を返します。単位系に関する詳細な情報については、単位系 を参照して下さい。
ScientificConstants オブジェクトが指定された座標系を持たない場合、評価には現在の単位系が使用されます。
'system' オプションを用いることで、ScientificConstants オブジェクトが指定された座標系を持つ場合、評価にはその座標系が使用されます。
ScientificConstants オブジェクトの不確定性が定義されていない場合には、undefined が返されます。
導出される物理定数に対して、ScientificErrorAnalysis は、誤差を計算するために使用されます。
Element() オブジェクトに対して、保存されている特性の不確定性が手続きである場合、特性に与えられているパラメータは、引数として評価されます。誤差は投げ返されます。結果は、必要な単位変換へ受け渡されます。
ScientificConstants オブジェクトではない ScientificErrorAnalysis の誤差を持つオブジェクトについて、誤差にアクセスするためには、ScientificErrorAnalysis[GetError] コマンドを使用してください。詳細は、ScientificErrorAnalysis and ScientificConstants を参照してください。
例
with(ScientificConstants): Constant( c );
GetError( % );
Constant( G );
Constant( m[e] );
Units:-UsingSystem();
%% / GetValue( %%% );
ナトリウムの原子量の絶対誤差(SI単位系)および相対誤差の決定
Element( Na, atomicweight );
% / GetValue( %% );
ナトリウムの原子量の絶対誤差(CGS単位系)および相対誤差の決定
Element( Na, atomicweight, system=CGS );
予想の通り、異なる単位系では、原子量の絶対誤差は異なりますが、相対誤差は同じになります。
参照
同上演算子(%), 元素および同位体の概要, 物理定数の概要, ScientificConstants パッケージの紹介, ScientificConstants[Constant], ScientificConstants[Element], ScientificConstants[GetValue], ScientificConstants[GetUnit], ScientificErrorAnalysis[GetError], ScientificErrorAnalysis and ScientificConstants, 単位系, Units[UsingSystem]
Download Help Document