Community Tip - Have a PTC product question you need answered fast? Chances are someone has asked it before. Learn about the community search. X
Hi everyone, I don't know what's happening to me, but when I think I know how Mathcad works, I'm not able to do a simple thing.
Mi problem today it's that I'm trying to do an "else if" statement but again, for some reason I cannot figure out how to program it. I've searched through the forum but I don't know how to fill the part that is missing (see image)
Again, if someone could give me a hand with this (I'm going crazy) I would appreciate.
Thx in advance.
Solved! Go to Solution.
I didn't spot it the first time:
In the part you highlighted you ask if the x-difference is smaller or equal 3.848*10^-5. Inside this if-branch you then ask if the same difference is greater than that same value, which can never be (otherwise we would not be in that branch).
So your main problem seems to be that you put the follow up if inside the first if while you should have put it underneath.
I tried to correct your program, but its unclear to me what you want K2 to be. You provide 4 different values for K2 but only three different regions for the x-difference: (0..3.8*10-^5] (3.8*10-^5..1.8*10^-4) [1.8*10^-4..+inf)
See attached a possible solution which considers at leaast the three intervals for Delta-x. You have to change it to allow for the fourth value.
BTW, you will have a hard time trying to find a number which fulfills your condition 😉
There is no "else if" in Mathcad 15 and below.
From the help:
Maybe the attched helps
Actually I've tried as you said, but as you can see in the image below it's not doing the comparison
I didn't spot it the first time:
In the part you highlighted you ask if the x-difference is smaller or equal 3.848*10^-5. Inside this if-branch you then ask if the same difference is greater than that same value, which can never be (otherwise we would not be in that branch).
So your main problem seems to be that you put the follow up if inside the first if while you should have put it underneath.
I tried to correct your program, but its unclear to me what you want K2 to be. You provide 4 different values for K2 but only three different regions for the x-difference: (0..3.8*10-^5] (3.8*10-^5..1.8*10^-4) [1.8*10^-4..+inf)
See attached a possible solution which considers at leaast the three intervals for Delta-x. You have to change it to allow for the fourth value.
BTW, you will have a hard time trying to find a number which fulfills your condition 😉
Use please not operator but function if:
Valery Ochkov schrieb:
Use please not operator but function if:
Why? I see no reason for not using the programming structure.
Norman Friedman wrote:
Valery Ochkov schrieb:
Use please not operator but function if:
Why? I see no reason for not using the programming structure.
I guess thats a matter of personal preference.
I'm working with Matchad 15, how I can use this form of statement?
Maikel Nite wrote:
I'm working with Matchad 15, how I can use this form of statement?
Same way! Get if function from Insert/Functions and use Add Line from Programming menu for the second and third inputs:
Alan
If I want use my worksheet in Mathcad Prime and in Mathcad Express (or Espresso) I must use not the operator (the statement) if but the function if. Mathcad Express has no proramming tools.
See my old tip #40 from the book "Tips for Mathcad users"
http://twt.mpei.ac.ru/ochkov/Sovet_MC/039/Tips_39_48_Eng.htm
I didn't even know this existed. Nice.
Mike
This is one of the first times I have saw a use for the 'else' conditional statement. Actually seems an improvement.
Mike