Note: You are currently viewing documentation for Moodle 3.3. Up-to-date documentation for the latest stable version of Moodle is probably available here: Formulas: Examples.

Formulas: Examples

From MoodleDocs


Significant figures

"The significant figures of a number are digits that carry meaning contributing to its measurement resolution." (Reference: https://en.wikipedia.org/wiki/Significant_figures).

The Formulas question has no built-in function to display numbers with a given number of significant figures. However, it is easy to work out this function as the following variable assignment which works with any real number:

xr=x==0?x:round(x*pow(10,nsf-1-floor(log10(abs(x)))),0)*pow(10,-nsf+1+floor(log10(abs(x))));

where x is the number to be rounded, nsf the number of significant digits to keep and xr the rounded value.


This example deals with the display of numbers written with a given number of significant figures.

The Formulas question should look like this:

Formulas201712301427.png

Play it   Login info  (Open in new tab: Ctrl+Shift+Click)


Back to top of page

← FORMULAS QUESTION TYPE