Placing a question mark at the end of a statement does not make it a sensible question. Try to use a whole sentence to describe what it is that you want answered.Yes, it is possible to input a number and find whether it is positive or negative. Yes, it is possible to write an algorithm to do that. But what is it that you want?
Chat with our AI personalities
Positive clipper-the clipper which removes the positive half cycles of the input voltage, while the negative clipper the clipper which removes the negative half cycles of the input voltage.
The rule that determines the output number based on the input number is known as a function. For example take the function: f(x) = x+1. F is the name of our function, x is the input number, and f(x) is our output number. So if our input number is 3, our function or "rule" says to add one to it. Therefore, f(x), known as the output number, would be 4 since 3+1 = 4.
Edit Component
yes it is. http://www58.wolframalpha.com/input/?i=is+151+a+prime+number%3F
complex to-complex(mag, theta) { if(mag >=0) { real = mag * cos(theta); img = mag * sin(theta); return real + i * img; } else raise error; } One test is needed : mag must be a positive number! And the return value is depending of your way to deal with complex number