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, everyone,
The function I am going to plot has two sets within the range x:(0,1) and y: (0,1),
when the square is split into two triangular.
But the loop I write only plot the latter set that I wrote.
So how to plot both of them?
Looking forward to hear from you!
Best
Shawn
Solved! Go to Solution.
Unless you use a return statement a program returns only what is on the last line. A return statement forces the program to return a particular result and then exit.
Unless you use a return statement a program returns only what is on the last line. A return statement forces the program to return a particular result and then exit.
Thank you Richard, that's very helpful.