I have just found a book that describes a procedure very similar to what I need to do. However, the book, being from 1972, shows the solution in ALGOL, whereas I need to write my code in a more recent language. I am trying to find out if I understand correctly what the ALGOL code in front of me is doing:
Am I right that the following code,
sl:=ff;
,simply assigns a value, as , for example, the sl = ff; statement would do in SAS?
Does the ↑ character mean "raised to the power of"?
What is a "realprocedure"? Is it the ALGOL equivalent of a subroutine in FORTRAN or a module in SAS?
Earlier in the code, I read that a is an array. Am I right, then, that the following code,
for i: 1 step 1 until m do begin a[i]:=0; for j:=1 step 1 until m do a[i] :=a[i] + ww[j] x slope; a[i]:=1/a[j];
populates the matrix a, where i is the row number, j is the column number, and m is (apparently) i * j?
Yes, ":=" assigns a value to a variable
Yes, the character "^" mean "raised to the power of"
"realprocedure", I suppose is "real procedure". Thats mean a procedure that return a real value.
In Algol there are blocks of code. Each block begin with "begin" and end with "end". If you omit begin-end words, then the block is only one instruction. Your code here is unclear.