Skip to content

sogei/matlab_tools

 
 

Repository files navigation

Matlab tools

Many useful Matlab tools, look a bit at everything, you will likely find useful things for your project. It is not really documented but names of function are often enough.

I highly recommend the logger class that is really convenient to log many values during iterative experiments.

Example:

rec = Logger();
for i = 1:50
    a = rand();
    rec.logit(a)
end
plot(rec.a)
rec.save('here.mat')

Then look at the plotting tools, as well as the logarithm tools if you play with probabilities.

Have fun!

About

Some usefull tools for basic machine learning and running experiments

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages

  • MATLAB 99.3%
  • Other 0.7%