Re: Math exp issue?

2018-02-21 Thread Alexander Burger
Hi Henrik, > For reference, the article / tutorial: > https://medium.com/technology-invention-and-more/how-to-build-a-simple-neural-network-in-9-lines-of-python-code-cc8f23647ca1 Nice! > (de colM (M Cn) >(make > (for Col M > (link (car (nth Col Cn ) ) > > ## Transpose ma

Subscribe

2018-02-21 Thread Lawrence Bottorff
subscribe

Emacs mode can't run pil

2018-02-21 Thread Lawrence Bottorff
I'm getting either Searching for program: No such file or directory, pil or File already exists: /home/hercynian/.pil/editor-orig whenever I try to do `run-picolisp` in Emacs. I've got pil correctly set up: >which pil /home/me/opt/picoLisp/pil and the command-line pil works fine >pil : (vers

Re: Math exp issue?

2018-02-21 Thread Henrik Sarvell
Thanks Alex, I'll try them out, and modify multiply to handle an arbitrary amount of matrices. On Wed, Feb 21, 2018 at 11:36 AM, Alexander Burger wrote: > Hi Henrik, > > > For reference, the article / tutorial: > > https://medium.com/technology-invention-and-more/how-to- > build-a-simple-neural

Re: Math exp issue?

2018-02-21 Thread Henrik Sarvell
I've got this currently: ## See http://rosettacode.org/wiki/Matrix_transposition#PicoLisp (de trM (M) (apply mapcar M list) ) ## According to https://en.wikipedia.org/wiki/Matrix_multiplication ## Handles all scenarios just like Python's nympy's dot(). (de mM @ (let (Am (next) Bm

Re: Emacs mode can't run pil

2018-02-21 Thread Nehal
Hi Lawrence, Check: 1. If pil is running correctly in shell from inside Emacs. 2. If you added Picolisp in .emacs file in (org-babel-do-load-languages 'org-babel-load-languages '((picolisp . t))) On 2/21/18, Lawrence Bottorff wrote: > I'm getting either >