Hi
I have noticed a possible bug in the getdata function. When you try to use e.g. lassor, there is the following line in the code:
w = getdata(lambda);
where lambda is a trained mapping. The call to getdata returns a cell with data, which causes the code to crash two lines later. Interestingly, when you replace the above line with:
w = +lambda;
w is no longer a cell and the rest of code works just fine. So, in other words in this case getdata(A) and +A work differently.
I was using PRTools from 19/08/2009.

