Monday, February 15, 2010

Factorial in Matlab

To calculate the factorial of n in Matlab, that's simple:
factorial (n)
will do it.

1 comment:

Any comments?

my-alpine and docker-compose.yml

 ``` version: '1' services:     man:       build: .       image: my-alpine:latest   ```  Dockerfile: ``` FROM alpine:latest ENV PYTH...