HP Forums
A Tiny (WP34S) program does a lot - Printable Version

+- HP Forums (https://www.hpmuseum.org/forum)
+-- Forum: Not HP Calculators (/forum-7.html)
+--- Forum: Not quite HP Calculators - but related (/forum-8.html)
+--- Thread: A Tiny (WP34S) program does a lot (/thread-2508.html)

Pages: 1 2


RE: A Tiny (WP34S) program does a lot - Dieter - 11-29-2014 09:02 PM

(11-29-2014 10:27 AM)Thomas Klemm Wrote:  You could as well use the complex factorial to calculate the derivative:

Ah, great — I did not expect the factorial function being implemented even in the complex domain.

In double precision mode, i.e. 1 ULP = 10—34, a value like 10—17 or 10—20 in R00 yields 33 correct digits (...7216 resp. ...7215 instead of ...7213).

Dieter


RE: A Tiny (WP34S) program does a lot - Dieter - 11-29-2014 09:15 PM

(11-29-2014 11:37 AM)BarryMead Wrote:  The "Focal" language is so rich with hidden features and cool shortcuts. A WHOLE BOOK could be
written on the "Focal" language and it's hidden treasures.

I always thought that FOCAL refers to FOurty-one CAlculator Language, i.e. the 41 series. On the other hand the features discussed here are unique to the 34s, so they should be named differently. Maybe THIFOCAL (thirty-four calculator language). ;-)

Dieter


RE: A Tiny (WP34S) program does a lot - Massimo Gnerucci - 11-29-2014 09:21 PM

(11-29-2014 09:15 PM)Dieter Wrote:  I always thought that FOCAL refers to FOurty-one CAlculator Language, i.e. the 41 series. On the other hand the features discussed here are unique to the 34s, so they should be named differently. Maybe THIFOCAL (thirty-four calculator language). ;-)

Dieter

Forty-One CAlculator Language...


RE: A Tiny (WP34S) program does a lot - Paul Dale - 11-29-2014 09:31 PM

(11-29-2014 09:02 PM)Dieter Wrote:  Ah, great — I did not expect the factorial function being implemented even in the complex domain.

Gamma is why not factorial which is the same function really?

I tried quite hard to include complex versions of everything I could, the notable exception being the Riemann Zeta function where I couldn't find a suitable complex approximation.


- Pauli


RE: A Tiny (WP34S) program does a lot - Gerson W. Barbosa - 11-29-2014 09:58 PM

(11-29-2014 08:55 PM)walter b Wrote:  Μάλα γὰρ φιλοσόφου τοῦτο τὸ πάθος, τὸ θαυμάζειν: οὐ γὰρ ἄλλη ἀρχὴ φιλοσοφίας ἢ αὕτη.

That is all greek to me, my friend,
Its sense I would not apprehend.
About the meaning of this I've pondered,
"What the heck might that be?", I wondered.
My search has now come to an end. :-)


RE: A Tiny (WP34S) program does a lot - Thomas Klemm - 11-29-2014 11:04 PM

(11-29-2014 08:13 PM)Dieter Wrote:  This forum supports Unicode

From the HTML sources:
PHP Code:
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"

Thus you have to make sure to use UTF-8 in your posts.

Cheers
Thomas


RE: A Tiny (WP34S) program does a lot - Dieter - 11-29-2014 11:33 PM

(11-29-2014 11:04 PM)Thomas Klemm Wrote:  Thus you have to make sure to use UTF-8 in your posts.

OK - how can I set UTF-8 or any other character encoding while composing a message here?

Dieter


RE: A Tiny (WP34S) program does a lot - Marcus von Cube - 11-30-2014 10:27 AM

(11-29-2014 11:33 PM)Dieter Wrote:  
(11-29-2014 11:04 PM)Thomas Klemm Wrote:  Thus you have to make sure to use UTF-8 in your posts.
OK - how can I set UTF-8 or any other character encoding while composing a message here?

Just compose your message! The encoding is already set by the pages of this site. Whenever you paste or type a non ASCII character, it is treated as Unicode and stored as such in the forum database.


RE: A Tiny (WP34S) program does a lot - Thomas Klemm - 11-30-2014 11:26 AM

(11-29-2014 11:33 PM)Dieter Wrote:  OK - how can I set UTF-8 or any other character encoding while composing a message here?

You probably never have to handle this by yourself if your default-encoding is set to UTF-8. Your OS/editor/browser will translate the text to UTF-8 on the fly based on the encoding of the source.

Cheers
Thomas


RE: A Tiny (WP34S) program does a lot - Dieter - 11-30-2014 12:36 PM

(11-30-2014 11:26 AM)Thomas Klemm Wrote:  You probably never have to handle this by yourself if your default-encoding is set to UTF-8.

You said I had to make sure the encoding is set to UTF-8. So what do I have to do to now? Where can I set the default encoding you mentioned?

Dieter


RE: A Tiny (WP34S) program does a lot - Nigel (UK) - 11-30-2014 01:14 PM

(11-30-2014 12:36 PM)Dieter Wrote:  
(11-30-2014 11:26 AM)Thomas Klemm Wrote:  You probably never have to handle this by yourself if your default-encoding is set to UTF-8.

You said I had to make sure the encoding is set to UTF-8. So what do I have to do to now? Where can I set the default encoding you mentioned?

Dieter

On the Chrome browser go to Settings; search for Encoding; then select Customise Fonts in the Web Content section; scroll to the bottom, and there you are! No doubt something similar can be done in other browsers.

Nigel (UK)


RE: A Tiny (WP34S) program does a lot - Marcus von Cube - 11-30-2014 02:59 PM

(11-30-2014 12:36 PM)Dieter Wrote:  You said I had to make sure the encoding is set to UTF-8. So what do I have to do to now? Where can I set the default encoding you mentioned?

I don't see a need to set the encoding manually. Normally, the encoding of an HTML page is indicated in its header. All entry fields do just use the very same encoding as the page they are part of.

From the source of this page (the one I'm typing my reply in):
Code:
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />

To be precise: The encoding may as well be indicated in the HTTP header as can be deduced from the "http-equiv" attribute.

Final words: Don't worry, just paste your special characters and you're done! If it doesn't work change your web browser.


RE: A Tiny (WP34S) program does a lot - Dieter - 11-30-2014 03:17 PM

(11-30-2014 02:59 PM)Marcus von Cube Wrote:  Final words: Don't worry, just paste your special characters and you're done!

Thank you – that's what I wanted to hear. ;-)

Dieter