Showing posts with label Resources. Show all posts
Showing posts with label Resources. Show all posts

Thursday, August 12, 2010

Download Matlab toolbox manual - Fuzzy logic toolbox

I would like to share a good book to show you how to use Fuzzy Logic Toolbox in Matlab. You can download it from:

http://www.box.net/shared/xe94kj9ej1

Enjoy!

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.

Wednesday, July 15, 2009

Casio FX4500PA Calculator User Manual Download

I got a Casio fx4500PA calculator several years ago, but I just use it for the simplest calculation. And today I realized that it might be interesting if I do some more complicated job on this calculator. So I found this user manual and it can tell me how to do INTEGRATION and other programming on it. It's pretty cool.

Here's the link to download the user manual:

Casio FX4500PA Calculator User Manual Download

Wednesday, June 10, 2009

Good Resources

The best resource i found is the help command. The second best resource is Google! Yeah!

my-alpine and docker-compose.yml

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