Author Topic: v30 calculator  (Read 3035 times)

joecar

  • Senior Community Member
  • Posts: 510
  • Hero Points: 9
  • engineer/gearhead
v30 calculator
« on: November 07, 2025, 07:23:29 PM »
Is there a way to revert the v30 calculator back to previous (i.e. no scientific functions, no conversions), i.e. like a setting or a button (one for scientific functions, another for conversions)...?

Also, if you really want to do conversions (proverbial can of worms):
- kilometer is mentioned, but mile, nautical mile and league are not mentioned.
- rod/pole, chain, furlong, fathom are not mentioned.
- in addition to tonne, note that ton has two variants, long and short.
- area is not mentioned (hectare, acre, square mile, rood, perch).
- gallon has two variants, US and Imperial.

 :D ;D


joecar

  • Senior Community Member
  • Posts: 510
  • Hero Points: 9
  • engineer/gearhead
Re: v30 calculator
« Reply #1 on: November 07, 2025, 07:25:00 PM »
( can remove "(Hex)" since everyone knows what 0x1234 means )
« Last Edit: November 07, 2025, 07:35:08 PM by joecar »

joecar

  • Senior Community Member
  • Posts: 510
  • Hero Points: 9
  • engineer/gearhead
Re: v30 calculator
« Reply #2 on: November 07, 2025, 07:32:40 PM »
trigonometric and hyperbolic functions: do these take arguments in degrees or radians...?

suggestion:
they should take arguments in radians, and could have a degree ° button to specify degree->radian conversion, e.g. sin(90°)

i.e. so executing 90° would produce 1.5708 radians.


And there is no pi or e constants (if you're doing trig/hyp you will need these).

« Last Edit: November 07, 2025, 07:34:22 PM by joecar »

Dan

  • SlickEdit Team Member
  • Senior Community Member
  • *
  • Posts: 2930
  • Hero Points: 153
Re: v30 calculator
« Reply #3 on: November 07, 2025, 07:38:04 PM »
( can remove "(Hex)" since everyone knows what 0x1234 means )

I can never remember how to convert a metric ton.

joecar

  • Senior Community Member
  • Posts: 510
  • Hero Points: 9
  • engineer/gearhead
Re: v30 calculator
« Reply #4 on: November 07, 2025, 07:41:45 PM »
scientific calculator also require factorial ! operator, and C(n,r) and P(n,r) functions.

joecar

  • Senior Community Member
  • Posts: 510
  • Hero Points: 9
  • engineer/gearhead
Re: v30 calculator
« Reply #5 on: November 07, 2025, 07:42:35 PM »
can of worms continues:

will the scientifc calculator support complex numbers...?  :)

joecar

  • Senior Community Member
  • Posts: 510
  • Hero Points: 9
  • engineer/gearhead
Re: v30 calculator
« Reply #6 on: November 07, 2025, 07:49:11 PM »
Code: [Select]
-19 % 7   = -5 = 0xFFFB (16 bit)
is fine, but what if some other word width was wanted, e.g. 8 bits or 32 bits...?

joecar

  • Senior Community Member
  • Posts: 510
  • Hero Points: 9
  • engineer/gearhead
Re: v30 calculator
« Reply #7 on: November 07, 2025, 07:52:35 PM »
superscript checkbox is confusing...

it looks like it does power:
Code: [Select]
5³= 125
125
5**3= 125 = 0x7D (Hex)
125

Clark

  • SlickEdit Team Member
  • Senior Community Member
  • *
  • Posts: 7111
  • Hero Points: 542
Re: v30 calculator
« Reply #8 on: November 07, 2025, 09:15:54 PM »
Thanks for the suggestions.

We will continue to add features to the calculator.

An option whether to add " (Hex)" would be useful.

More unit types

Functions like sin needs to support radians and degrees


I like typing equations in the editor and using variables. Very convenient for some simple math that I don't have an app for.


Clark

  • SlickEdit Team Member
  • Senior Community Member
  • *
  • Posts: 7111
  • Hero Points: 542
Re: v30 calculator
« Reply #9 on: November 07, 2025, 10:56:03 PM »
No docs for π and the calculator doesn't have a button for it but π is supported. It would be handy if "pi" worked too. Right now, only π is supported. No support for "e" yet.

joecar

  • Senior Community Member
  • Posts: 510
  • Hero Points: 9
  • engineer/gearhead
Re: v30 calculator
« Reply #10 on: November 11, 2025, 01:08:20 AM »
No docs for π and the calculator doesn't have a button for it but π is supported. It would be handy if "pi" worked too. Right now, only π is supported. No support for "e" yet.
Not sure what you mean by n.

 :)

joecar

  • Senior Community Member
  • Posts: 510
  • Hero Points: 9
  • engineer/gearhead
Re: v30 calculator
« Reply #11 on: November 11, 2025, 01:20:08 AM »
Functions like sin needs to support radians and degrees
sometimes there are mixed radix calculations, e.g.  sin(90°)*cos(pi)
and a pi symbol button would be nice  :)

Quote
I like typing equations in the editor and using variables. Very convenient for some simple math that I don't have an app for.
Copy/Paste of equations is very handy  :)
Variables are required, with multi letter names (i.e. not a single letter name).

Clark

  • SlickEdit Team Member
  • Senior Community Member
  • *
  • Posts: 7111
  • Hero Points: 542
Re: v30 calculator
« Reply #12 on: November 11, 2025, 01:44:08 AM »
We will be adding quite a few calculator additions to v30.0.1 (like better support for degrees, more unit support etc.).

Buttons for some unicode stuff would be handy

Thanks again for more suggestions   

joecar

  • Senior Community Member
  • Posts: 510
  • Hero Points: 9
  • engineer/gearhead
Re: v30 calculator
« Reply #13 on: November 13, 2025, 08:21:18 PM »
You are welcome.

I have a few more suggestions that I am thinking thru and trying out on various calculators.

Clark

  • SlickEdit Team Member
  • Senior Community Member
  • *
  • Posts: 7111
  • Hero Points: 542
Re: v30 calculator
« Reply #14 on: November 13, 2025, 09:12:49 PM »
Have you tried typing something like:

Code: [Select]
25*123=


in a .txt file? With the default options, the result is copied to the clipboard. You can turn this feature ON for source files too and limit it to when you're in comments.

Tools>Math>When Type '=' Copy Result to Clipboard

I did find some issues where certain binary operations with unit types should display an error but currently gives a result which doesn't make sense. We will eventually post a hot fix for this.