Hello everyone,
Please look at the attached MathCad worksheet.
I would like to know if the solution block for my problem can be simplified by using the Minerr solver.
The solution block must solve for 192 equations.
Thank you so much for the time and help.
Regards,
CarlosRomero
Solved! Go to Solution.
How about using vectorization?
Hello Werner,
Thank you for your input.
Appreciate your time and help.
Seems like it also works without Vectorize?
All the best,
Carlos Romero
Seems like it also works without Vectorize?
Yes, it does, because Mathcad applies implicit vectorization. If this works OK depends on the calculations used. E.g. if you replace Q^2 by Q*Q you will get a different, wrong result if you don't use vectorization (because Q*Q is evaluated as scalar product of the two vectors).
So its best that whenever you want vectorization (evaluating an expression with vector feed element by element) to be done, explicitly apply it and don't rely on Mathcads implicit vectorization to be done.
That's great thank you for your help!