Octave tips

I am taking Coursera Machine Learning course, which requires octave usage for programming assighments. Here are some tricks I learned:

Getting matrix without first column:

octave:11> a = [1 2 3; 4 5 6]
a =

   1   2   3
   4   5   6

octave:12> a(:,2:end)
ans =

   2   3
   5   6

Logging best practices

3 minutes read

How to list postgres procedures

short read

Why I like go lang

short read