Skip to main content
1-Visitor
July 14, 2014
Solved

How to generate several outputs from a loop?

  • July 14, 2014
  • 2 replies
  • 1622 views

Hey!

I'm wondering if there is a way to get more than one output from a program in Mathcad Prime? In my case it is a for loop and I would like to output both a message and a parameter (1-by-2 vector).

For example:

test = "Error in:" [3,5] ...or something like that.

Where "test" is the function I'm using.

Thanks in advance!

Best answer by Werner_E

You can nest vectors and matrices. So let the return value of your program be a 2x1 vector where the string is the first and the 1x2 matrix is the second element.

2 replies

Werner_E
Werner_E25-Diamond IAnswer
25-Diamond I
July 14, 2014

You can nest vectors and matrices. So let the return value of your program be a 2x1 vector where the string is the first and the 1x2 matrix is the second element.

jmisund1-VisitorAuthor
1-Visitor
July 15, 2014

I think I should have been able to see that... thank you for enlightening me