Community Tip - Did you get called away in the middle of writing a post? Don't worry you can find your unfinished post later in the Drafts section of your profile page. X
Hello everyone,
i want to the chop the matrix Rm into equal parts based on the row(Loads), which is 3 here.
And then i want to augment the equally chopped parts, like i did in 'K'.
I did not get what is wrong in the program K, it only augments first and last parts.
Could someone help me here
I can not attach Mathcad sheet as per my companies policy.
Solved! Go to Solution.
To attach a file here you may create a dummy sheet with dummy data, showing the same undesired behaviour but with non-sensible data.
Try the following two modifications:
1) Replace "Augmatrix" with "Matrix"
2) Add a line at the end of the program just reading "Matrix" to define the output value.
The second modification may not be necessary as the return value of a program automatically is the last calculation done, but its good programming behaviour.
Hi,
it is always a good idea to upload a Mathcad file
To attach a file here you may create a dummy sheet with dummy data, showing the same undesired behaviour but with non-sensible data.
Try the following two modifications:
1) Replace "Augmatrix" with "Matrix"
2) Add a line at the end of the program just reading "Matrix" to define the output value.
The second modification may not be necessary as the return value of a program automatically is the last calculation done, but its good programming behaviour.
This works. Thanks a lot.