Difference between revisions of "Manuals/calci/SUBTRACTBY"

From ZCubes Wiki
Jump to navigation Jump to search
(Created page with "<div style="font-size:30px">'''SUBTRACT() '''</div><br/>")
 
Line 1: Line 1:
<div style="font-size:30px">'''SUBTRACT() '''</div><br/>
+
<div style="font-size:30px">'''SUBTRACTBY(Number1,Number2) '''</div><br/>
 +
*<math>Number1</math> and <math>Number2</math> are any real numbers.
 +
 
 +
==Description==
 +
*This function shows the subtraction of the given numbers.
 +
*In <math>SUBTRACTBY(Number1,Number2)</math>,<math>Number1</math> and <math>Number2</math> are any real numbers.
 +
*Subtraction means taking one number away from another number.
 +
*Here <math>Number1</math> is called Minuend,which is the number that is to be subtracted from.
 +
*<math>Number2</math> is called Subtrahend ,which is the number that is to be subtracted.
 +
*The getting result is called Difference which is the result of subtracting one number from another.
 +
*In this function Number2 is subtracted from Number1.
 +
*If there is third parameter then this function will not consider the third parameter.
 +
*This function will consider first two parameters only.
 +
 
 +
==Examples==
 +
#SUBTRACTBY(342,189) = 153
 +
#SUBTRACTBY(-226,-901) = 675
 +
#SUBTRACTBY(34.9,-78.23) = 113.13
 +
#SUBTRACTBY(1/2,7/8) = -0.375
 +
 
 +
==See Also==
 +
*[[Manuals/calci/MINUS | MINUS  ]]
 +
*[[Manuals/calci/SUBTRACT | SUBTRACT  ]]
 +
*[[Manuals/calci/DECREMENT  | DECREMENT  ]]
 +
 
 +
==References==
 +
*[https://www.mathsisfun.com/numbers/subtraction.html  Subtraction]
 +
 
 +
*[[Z_API_Functions | List of Main Z Functions]]
 +
*[[ Z3 |  Z3 home ]]

Revision as of 13:50, 10 May 2017

SUBTRACTBY(Number1,Number2)


  • and are any real numbers.

Description

  • This function shows the subtraction of the given numbers.
  • In , and are any real numbers.
  • Subtraction means taking one number away from another number.
  • Here is called Minuend,which is the number that is to be subtracted from.
  • is called Subtrahend ,which is the number that is to be subtracted.
  • The getting result is called Difference which is the result of subtracting one number from another.
  • In this function Number2 is subtracted from Number1.
  • If there is third parameter then this function will not consider the third parameter.
  • This function will consider first two parameters only.

Examples

  1. SUBTRACTBY(342,189) = 153
  2. SUBTRACTBY(-226,-901) = 675
  3. SUBTRACTBY(34.9,-78.23) = 113.13
  4. SUBTRACTBY(1/2,7/8) = -0.375

See Also

References