Hello i want to multiply 2 arrays for one of my projects which i am currently working on.
Here is the code which i am trying to run:
Program POU VAR a: array [1..5,1..2] of real:= [1,2,3,4,5,6,7,8,9,1]; b: array [1..2,1..5] of real:= [1,2,3,4,5,6,7,8,9,1]; c: real; END_VAR
How can this be done? It would be great if someone can help me
Log in to post a comment.
Hello i want to multiply 2 arrays for one of my projects which i am currently working on.
Here is the code which i am trying to run:
Program POU
VAR
a: array [1..5,1..2] of real:= [1,2,3,4,5,6,7,8,9,1];
b: array [1..2,1..5] of real:= [1,2,3,4,5,6,7,8,9,1];
c: real;
END_VAR
How can this be done? It would be great if someone can help me