Matrix Error
Matrix Error
(OP)
Can somebody help me resolve this error in Matrix output?
I came across in the internet this useful template but I want to customize to increase its usage.
The Matrix output on the attached MathCad File will have an error when the Number of Pedestal will be greater than 3. I can't figure out which variable limits this situation.
Thank you.
I came across in the internet this useful template but I want to customize to increase its usage.
The Matrix output on the attached MathCad File will have an error when the Number of Pedestal will be greater than 3. I can't figure out which variable limits this situation.
Thank you.
RE: Matrix Error
RE: Matrix Error
RE: Matrix Error
RE: Matrix Error
RE: Matrix Error
look into making the output an excel file or a CSV.
RE: Matrix Error
But i even tried reducing the number of load combination to only 3 (from 29 orig), the matrix size is 9 x 9 for 3 pedestals, 9 x 12 for 4 pedestals and still the error occur in 4 pedestals.
RE: Matrix Error
XY:={Excel}
You should be using Insert Component | Excel Worksheet, which should give you almost the exact same thing, except for the empty placeholder to the left of a := next to the component.
TTFN
FAQ731-376: Eng-Tips.com Forum Policies
RE: Matrix Error
RE: Matrix Error
RE: Matrix Error
I am sure its not on the size of Matrix, because i already tried reducing NoOfComb from 29 to 3, but the error is still there.
RE: Matrix Error
RE: Matrix Error
CombFactor*submatrix(MatrixLoad,NoOfLoad*k,NoOfLoad(k+1)-1,0,NoOfForce-1)
- The difference between NoOfLoad(k+1)-1] - [NoOfLoad*k] should be equal to the number of loads, (i.e NoOfLoad-1 to account 0, so i change the formula:
CombFactor*submatrix(MatrixLoad,0,NoOfLoad-1,0,NoOfForce-1) and it ran as i expected!