Monday, September 26, 2011

Plot multiple figures by one matlab code

plot (x1,y1)
figure (2)
plot (x2,y2)
figure (3)
plot (x3, y3)

This is how to create some new blank figures and plot on them.

7 comments:

  1. Excellent .. Very Useful one!!!

    Thanks
    Pasupathy
    pasupathykr@gmail.com

    ReplyDelete
  2. Very good, I liked it, simple but very useful

    ReplyDelete
  3. Replies
    1. If I have multiple figures that are saved as separate files (though they all have the same dimensions and type of information), then do you know how I can load them all into new code and then plot them all on the same figure? Everything I have seen online is about creating the plots in the same code and then overlaying them, but I cannot create them all in the same code.

      Delete
    2. Sorry but i don't quite understand your problem.

      Delete
  4. Very helpful! Works for imshow figures as well! Thank you!

    ReplyDelete

Any comments?

my-alpine and docker-compose.yml

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