Community Tip - When posting, your subject should be specific and summarize your question. Here are some additional tips on asking a great question. X
Hi!
How can I use the values from a solve block further down my calculations ? They are all nicely calculated in the solve block but they are unusable because they don't have a letter or any kind of notation attached to the values.
Tried to use definition := sign in this last block and build a matrix of 4x1 putting all F's on the column in the right order but when I try to see the value of any F (via = sign) after telling mathcad what values they should have, program crashes (Mathcad15)...
Total Freeze after "evaluate numericaly" icon push (=)
Solved! Go to Solution.
Johnny,
Use the definition operator the other way round, ie v:=Find(...)
This should give you a vector, v, containing the results of the solve block.
Stuart
Johnny,
Use the definition operator the other way round, ie v:=Find(...)
This should give you a vector, v, containing the results of the solve block.
Stuart
Wow it was just the order. Thanks a mil, it works now !
You might also want to consider using a numerical solve block rather than a symbolic solver. (The arrow asks for a symbolic solver, Typing Find() = asks for a numeric solver instead.) Since Mathcad is a numereic (primarily) engine, the numeric solver may be more robust. Since you got an answer that you're happy with using the method you did . . .
Whatever works!! 😉