Community Tip - Stay updated on what is happening on the PTC Community by subscribing to PTC Community Announcements. X
Hall everybody,
i want to create matrix 30x30 elements in Mathcad 14, why is it not possible? I must to make automatic worksheet and i can not make matrix with more than 600 elements. It must to look like yellow matrix in attachment but 30x30 elements. Could you help me with this problem ,please.
Thank you
Solved! Go to Solution.
Jan Krulak wrote:
Hall everybody,
i want to create matrix 30x30 elements in Mathcad 14, why is it not possible? I must to make automatic worksheet and i can not make matrix with more than 600 elements. It must to look like yellow matrix in attachment but 30x30 elements. Could you help me with this problem ,please.
Thank you
The manual matrix (ctl-M) method is limited to 600 elements, and has been for many versions.
If there is a pattern behind the element values, then the best way is to calculate the element values and assign them using the standard [i,j index format.
Alternatively, you could create 4 submatrices and stack/augment them, ie
M00 = [20x20], M01 = 20x10, M10 = [10x20], M11 = [10x10]
M = stack(augment(M00,M01),augment(M10,M11))
(or make them all 15x15)
Stuart
Could you write a matrix 30x30 in your worksheet that you need to display (update your worksheet and re-attach the file)?
Jan Krulak wrote:
Hall everybody,
i want to create matrix 30x30 elements in Mathcad 14, why is it not possible? I must to make automatic worksheet and i can not make matrix with more than 600 elements. It must to look like yellow matrix in attachment but 30x30 elements. Could you help me with this problem ,please.
Thank you
The manual matrix (ctl-M) method is limited to 600 elements, and has been for many versions.
If there is a pattern behind the element values, then the best way is to calculate the element values and assign them using the standard [i,j index format.
Alternatively, you could create 4 submatrices and stack/augment them, ie
M00 = [20x20], M01 = 20x10, M10 = [10x20], M11 = [10x10]
M = stack(augment(M00,M01),augment(M10,M11))
(or make them all 15x15)
Stuart
Attached is a short example of how it should work ...
Stuart
Thank you so much Mr. Bruff for your help
Nie je za čo, Jan.
Stuart