emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Re: Literate programming with calc (help)
@ 2023-09-10 13:06 Ypo
  0 siblings, 0 replies; 12+ messages in thread
From: Ypo @ 2023-09-10 13:06 UTC (permalink / raw)
  To: yantar92; +Cc: Org-mode

[-- Attachment #1: Type: text/plain, Size: 1585 bytes --]

I have discovered, taking a look at the Org Manual, that exists an 
embedded mode for Calc.

https://www.gnu.org/software/emacs/manual/html_mono/calc.html#Assignments-in-Embedded-Mode

Using "C-x * e" it solves this kind of formula with units:

a := 3 m / s

t := 7 s

a t =>



> > From:     Ihor Radchenko
> > Subject:     Re: LIterate programming with calc (help)
> > Date:     Tue, 01 Nov 2022 07:22:18 +0000
>
> ------------------------------------------------------------------------
> "Fraga, Eric"<e.fraga@ucl.ac.uk>  writes:
>
> >/> I guess that the main problem is that calc is tightly integrated with/
> >/> interactive commands. Maybe ob-calc could be extended to somehow/
> >/> indicate the commands to be executed in addition to inputting stack/
> >/> entries./
> >/>/
> >/> Not sure if there is much interest in such feature though./
> >//
> >/Thinking out loud, what would be better, but I have no idea how feasible/
> >/it would be, would be to have ob-calc make use of the embedded calc/
> >/functionality and syntax, so that you could write something like this:/
> >//
> >/#+begin_src calc/
> >/a := 300 m/
> >/b := 2 a =>/
> >/#+end_src/
> >//
> >/which would output the result of any line with => on it./
>
> I am CCing Tom Gillespie, the maintainer of ob-calc. Maybe he has
> something to say.
>
> -- 
> Ihor Radchenko // yantar92,
> Org mode contributor,
> Learn more about Org mode at <https://orgmode.org/>.
> Support Org development at <https://liberapay.com/org-mode>,
> or support my work at <https://liberapay.com/yantar92>
>
>
>
> 	
>
> 	
>
> 	
>

[-- Attachment #2: Type: text/html, Size: 3774 bytes --]

^ permalink raw reply	[flat|nested] 12+ messages in thread
* Re: LIterate programming with calc (help)
@ 2022-11-26 20:16 Ypo
  0 siblings, 0 replies; 12+ messages in thread
From: Ypo @ 2022-11-26 20:16 UTC (permalink / raw)
  To: yantar92, Org-mode

[-- Attachment #1: Type: text/plain, Size: 2098 bytes --]

Just in case you find this package interesting. Except some problems 
with units conversion, it's nice:

https://github.com/sulami/literate-calc-mode.el

> This is a literate calc file.
>
> Lines without "=" are ignored.
>
> All results starting with "=>" are an overlay generated by
> literate-calc-mode. That means they are displayed in Emacs, but not
> actually in the buffer/file contents.
>
> We can calculate a value like so:
>
> = 2 + 2 => 4
>
> If there is any string on the left hand side, it becomes a bound
> variable.
>
> Pi = 3.14159 => Pi: 3.14159
>
> We can use this variable below the definiton.
>
> Tau = Pi * 2 => Tau: 6.28318
>
> Results are calculated using Emacs' own calc, so you can use formulas
> as well.
>
> = round(Pi, 2) => 3.14
>
> Later bindings shadow earlier ones:
>
> Pi = 3 => Pi: 3
>
> = Pi => 3
>
> Variable names can have spaces as well:
>
> Monthly Expenses = 500 => Monthly Expenses: 500
>
> Monthly Income = 1000 => Monthly Income: 1000
>
> Annual Savings = 12 * (Monthly Income - Monthly Expenses) => Annual Savings: 6000
>
> All values are recalculated on every update in a spreadsheet-like
> fashion.
>
> Calc also has a lot of advanced features, like arrays:
>
> Numbers = [1 2 3] => Numbers: [1, 2, 3]
>
> = 3 Numbers => [3, 6, 9]


> "Fraga, Eric"<e.fraga@ucl.ac.uk>  writes:
>
> >/> I guess that the main problem is that calc is tightly integrated with/
> >/> interactive commands. Maybe ob-calc could be extended to somehow/
> >/> indicate the commands to be executed in addition to inputting stack/
> >/> entries./
> >/>/
> >/> Not sure if there is much interest in such feature though./
> >
> >/Thinking out loud, what would be better, but I have no idea how feasible/
> >/it would be, would be to have ob-calc make use of the embedded calc/
> >/functionality and syntax, so that you could write something like this:/
> >
> >/#+begin_src calc/
> >/a := 300 m/
> >/b := 2 a =>/
> >/#+end_src/
> >
> >/which would output the result of any line with => on it./
>
> I am CCing Tom Gillespie, the maintainer of ob-calc. Maybe he has
> something to say.

[-- Attachment #2: Type: text/html, Size: 2818 bytes --]

^ permalink raw reply	[flat|nested] 12+ messages in thread
* LIterate programming with calc (help)
@ 2022-10-23 12:15 Ypo
  2022-10-24  7:56 ` Fraga, Eric
  2022-10-31  9:23 ` Ihor Radchenko
  0 siblings, 2 replies; 12+ messages in thread
From: Ypo @ 2022-10-23 12:15 UTC (permalink / raw)
  To: Org-mode

[-- Attachment #1: Type: text/plain, Size: 549 bytes --]

Is it possible to express in a calc block some basic operations with 
variables and non-predefined units?


For example, if you wanted to build a code block that calculates how 
much money costs:

a land with an Area of 300x300 m^2 at a price of 1 $/m^2.


Would it be something like this?

#+begin_src calc
   a = 300 m
   b = 300 m
   Area = a*b
   cost = 1 ($/m^2)
   A*c

#+end_src


Is it possible to work with the "$" unit?

Why A*c won't show an arithmetic result, but ~: A c ~?

Wanted result is:


#+RESULTS:
: 90 000 $


Best regards

[-- Attachment #2: Type: text/html, Size: 1892 bytes --]

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2023-09-10 13:12 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-09-10 13:06 Literate programming with calc (help) Ypo
  -- strict thread matches above, loose matches on Subject: below --
2022-11-26 20:16 LIterate " Ypo
2022-10-23 12:15 Ypo
2022-10-24  7:56 ` Fraga, Eric
2022-10-24  9:20   ` Ihor Radchenko
2022-10-24  9:51     ` Fraga, Eric
2022-10-24 11:43       ` Christian Moe
2022-10-24 11:26   ` Ypo
2022-10-24 15:25     ` Fraga, Eric
2022-10-31  9:23 ` Ihor Radchenko
2022-10-31  9:54   ` Fraga, Eric
2022-11-01  7:22     ` Ihor Radchenko

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).