Thursday, July 23, 2009

Matlab: Matrix to a single column

Example:

a=
1 2 3
4 5 6
7 8 9

a=a(:)
->
a=
1
4
7
2
5
8
3
6
9

1 comment:

  1. Hi Carl

    I am a 5th year Chemical Engineering student at the Indian Institute of Technology at Kharagpur (India). I am working on my Master's thesis which involves the modelling of tumors. I have the profile of the tumor radius growth with time, the radius essentially increases exponentially with time. I ,however, want to make video for this tumor growth which would show the growth of tumor sphere with time. Your online link has been very useful so far. I would be really grateful to you if you could help me out with this problem.

    ReplyDelete

Any comments?

my-alpine and docker-compose.yml

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