Hi everybody
I'm looking for the best way to define a matrix in Labview.
Which way is the best (easiest/clearest/fastest)?
It looks like formula node is faster than mathscritp node, but it looks quite cumbersome to define a 6x6 matrix doing this way:
float K [6][6];
K[0][0]=m*L;
K[0][1]=....
K[1][1]=.....
for example, i need to define this matrix:
% KL = [ E*A/L, 0, 0, -E*A/L, 0, 0;
% 0, 12*E*J/L^3, 6*E*J/L^2, 0, -12*E*J/L^3, 6*E*J/L^2;
% 0, 6*E*J/L^2, 4*E*J/L, 0, -6*E*J/L^2, 2*E*J/L;
% -E*A/L, 0, 0, E*A*L, 0, 0;
% 0, -12*E*J/L^3, -6*E*J/L^2, 0, 12*E*J/L^3, -6*E*J/L^2;
% 0, 6*E*J/L^2, 2*E*J/L, 0, -6*E*J/L^2, 4*E*J/L;];
Thanks a lot