[SOLVED] Issue with cZeros - Printable Version +- HP Forums (https://www.hpmuseum.org/forum) +-- Forum: HP Calculators (and very old HP Computers) (/forum-3.html) +--- Forum: HP Prime (/forum-5.html) +--- Thread: [SOLVED] Issue with cZeros (/thread-7721.html) |
[SOLVED] Issue with cZeros - tiamattia - 02-05-2017 11:06 AM Hello, I'm developing a program to design filters using Butterworth and Chebyshev type I. To do this i defined some cas function to solve equations or denormalize things. Some of these functions are: Code:
BP_Denorm_TF works right also inside of a program. Instead, BP_Denorm_Zeros is not working as it should inside of a program. If i call this function directly from cas, everything works, the result is two zeros in the origin. If i call this function inside of a program, no solutions are returned. What's the problem? RE: Issue with cZeros - tiamattia - 02-05-2017 11:31 AM Problem solved, when using CAS commands in program mode, you have to provide the variable to solve. I think it's because in program mode the default var is X while in CAS is x. (I'm usign x) |