This difference is of particular importance when working with the dot product (scalar product). Mathematically, if one computes the dot-product of two vectors the result is a scalar value, but because of the syntax requirements of BBC BASIC you cannot do this:
Code: Select all
array(n) = vector1() . vector2() : REM doesn't work
Code: Select all
array(n TO n) = vector1() . vector2()