Vector products: Difference between revisions

m
→‎{{header|REXX}}: ordered subroutines in alphabetical order, removed blank lines, added whitespace, changed comments. -- ~~~~
(add Scala)
m (→‎{{header|REXX}}: ordered subroutines in alphabetical order, removed blank lines, added whitespace, changed comments. -- ~~~~)
Line 1,869:
 
=={{header|REXX}}==
<lang rexx>/*REXX program to computecomputes the products: the dot product, */
<lang rexx>
/*REXX program to compute the products: the dot product, */
/* the cross product, */
/* the scalar triple product, and*/
/* the vector triple product. */
 
a = 3 4 5 /*positive numbers don't need " */
b = 4 3 5
c = "-5 -12 -13"
 
call tellV 'vector A =',a /*show the A vector, aligned #s*/
Line 1,887 ⟶ 1,886:
call tellV 'scalar triple product [A∙(BxC)] =',dot(a,cross(b,c))
call tellV 'vector triple product [Ax(BxC)] =',cross(a,cross(b,c))
exit /*stick a fork in it, we're done.*/
exit
/*─────────────────────────────────────cross subroutine─────────────────*/
 
cross: procedure; parse arg x1 x2 x3,y1 y2 y3 /*the CROSS product.*/
return x2*y3-x3*y2 x3*y1-x1*y3 x1*y2-x2*y1 /*a vector quantity.*/
/*─────────────────────────────────────dot subroutine───────────────────*/
dot: procedure; parse arg x1 x2 x3,y1 y2 y3 /*the DOT product.*/
return x1*y1 + x2*y2 + x3*y3 /*a scaler quantity.*/
/*─────────────────────────────────────tellV subroutine─────────────────*/
tellV: procedure; parse arg name,x y z /*display the vector*/
w=max(4,length(x),length(y),length(z)) /*max width of nums.*/
say right(name,40) right(x,w) right(y,w) right(z,w)
return</lang>
'''out0ut'''
 
/*─────────────────────────────────────dot subroutine───────────────────*/
dot: procedure; parse arg x1 x2 x3,y1 y2 y3 /*the DOT product.*/
return x1*y1 + x2*y2 + x3*y3 /*a scaler quantity.*/
 
/*─────────────────────────────────────cross subroutine─────────────────*/
cross: procedure; parse arg x1 x2 x3,y1 y2 y3 /*the CROSS product.*/
return x2*y3-x3*y2 x3*y1-x1*y3 x1*y2-x2*y1 /*a vector quantity.*/
</lang>
Output:
<pre style="height:25ex;overflow:scroll">
vector A = 3 4 5