Friday, February 26, 2010

Some good blog posts

I ran into a blog yesterday, which is a very good source for Matlab fans. And i found some posts are really useful.

This one tells you how to better manage the memory:
http://obasic.net/preallocate-before-you-loop-it-in-matlab

This one shows how to conveniently set up the interface and default settings by using startup file.
http://obasic.net/set-your-customized-startup-file-for-matlab

Though some of them are geeky:
Twitter from Matlab?
http://obasic.net/how-to-twitter-from-matlab
Sending email using Matlab?
http://obasic.net/how-to-send-e-mail-from-matlab

Anyway, very nice job.

No comments:

Post a Comment

Any comments?

my-alpine and docker-compose.yml

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