Nicole Sharp

Miss Nicole Sharp

150 Reputation

5 Badges

1 years, 311 days
Frostburg State University (FSU)
Kappa Mu Epsilon Alumna
Cumberland, Maryland, United States

Social Networks and Content at Maplesoft.com

Nicole Sharp of Frostburg State University, Maryland, United States of America (USA). https://www.nicolesharp.net/

MaplePrimes Activity


These are answers submitted by Nicole Sharp

In order to access bult-in constants, you have to call them as "Constant(g[n])".  For example:

with(Units) : with(ScientificErrorAnalysis) : with(ScientificConstants) :
evalf(Constant(g[n])) ;
GetError(Constant(g[n])) ;
convert(evalf(Constant(m[n], units)), units, oz) ;

It is a bit annoying but to avoid this, you have to reassign the Constant objects as expressions, for example:

g__n := Constant(g[n]) :
m__n := Constant(m[n], units) :

Part of this is because a Constant object can be called either with or without units.  Without units, the values are as they are divided by their SI units.

Page 1 of 1