HP Forums
plotting functions but not for return values outside specified range - 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: plotting functions but not for return values outside specified range (/thread-7701.html)



plotting functions but not for return values outside specified range - n3mmr - 02-02-2017 04:56 PM

I'd like to do a polar plot of the logarithm of expressions, when the logarithm can attain values down to -infinity.

I want to plot only for those values that do not reach too large negative values.

And I want to use the included polar plot app.

A typical example is

R = 40 + 20*log(0.5+0.5*cos(theta))

where I'd like to plot only those values of R that are greater than 0, I e for thetas that keeps the logarithm part above -30 or so.

(The expression shown is the polar plot of an idealised cardioid microphone, plotted in dB relative to the response at 0 degrees, and is a typical example of the plots I want to do)

Is there any way to specify limits for what values to plot, w/o writing a rather complex function encapsulation?


RE: plotting functions but not for return values outside specified range - roadrunner - 02-04-2017 12:55 PM

try this:

[attachment=4441]

-road


RE: plotting functions but not for return values outside specified range - n3mmr - 02-04-2017 05:15 PM

OK, that is a form of encapsulation, but of an acceptable simplicity.

Can one change plot color dependent on some calculation or plotted value?


RE: plotting functions but not for return values outside specified range - roadrunner - 02-05-2017 12:18 PM

I don't know of any settings that will allow you to change the plot color based on a calculated value, but you can do that thru programming.

-road


RE: plotting functions but not for return values outside specified range - Fortin - 02-05-2017 06:23 PM

Sometimes using "" for the undefined value has caused me to have 'unexpected results'. I prefer to use 0/0 or to just remove the default in the piecewise template by using backspace on the last filled square. (a comma at the end of the line will bring the next line back)

Either solution works well, but I think that the one line piecewise template is easier to read.

{R1(Theta) if R1(Theta)>-30


RE: plotting functions but not for return values outside specified range - cyrille de brébisson - 02-06-2017 06:27 AM

Hello,

>Can one change plot color dependent on some calculation or plotted value?

I have no clue if it would work or not, but has someone tried to use a user program for the function calculation and to change the function color programmatically in said program? I would give it a 30% chance of working, but worth a try...

Cyrille


RE: plotting functions but not for return values outside specified range - n3mmr - 02-07-2017 12:10 PM

The encapsulation in a call to ifte() works very well.