is there a conflict - using a goto statement and profiling?
Hi everybody,I got an error message, when i try to profile code with a goto statement inside. Here is my minimal-example in Maple18. Is there a known conflict or what's wrong?f := proc(x) if x <...
View Articlehow to have a common exit point in a proc?
Maple does not have a GOTO. I do ?goto and nothing comes up (I thought it did at one point, but it seems to be gone). I also saw 99052-How-To-Write-Procedures-That-Use-Go-To-In-MapleGOTO is considered...
View ArticleHow do I run coding with goto on Maple?
Hi, I'm using Maple 2018 and I tried to run coding from https://www.maplesoft.com/applications/view.aspx?sid=4194&view=html however, it said : unable to parse. I figured out that the problem maybe...
View Articleimplementing switch/case?
Is there a switch/case statement in Maple? So that instead of: if (a = a1) then b1elif (a = a2) then b2elif (a = a3) then b3end if Something like: switch (a) {case: a1 {b1}case: a2 {b2}case: a3...
View ArticleKernel stop.
How do you stop Maple during this code execution:proc() x: print(1); goto(x); end():
View ArticleHow to use goto without “System error”
Let's put aside the drawbacks of using goto for now. Below is the program I wrote. When I run it, it seems to execute, but the Maple interface displays the message "System error,,at top level". Does...
View Article