I am trying to create the program which will assist me with tilted graphing, but my calculator says that the program is "Missing start or end of block syntax" neither my teacher not myself can tell where it is. Any suggestions?
Here is the program:
Define LibPub contilt(a,b,c,d,e,f)=
Prgm
If a=c
Then
45->o
Else
(arctan(b/(a-c))/2)->o
Endif
Disp a•cos(o)^2+b•cos(o)•sin(o)+c•sin(o)^2
Disp b•(cos(o)^2-sin(o)^2)-2•(a-c)•cos(o)•sin(o)
Disp a•sin(o)^2-b•cos(o)•sin(o)+c•cos(o)^2
Disp d•cos(o)+e•sin(o)
Disp e•cos(o)-d•sin(o)
Disp o
EndPrgm