HomeOverviewDownload PalamedesSupporting documentationFrequently asked questionsSubmit comments and questionsSubmit a bug reportNews and updates (last update: March 15, 2013)Why "Palamedes"?About usOptions besides PalamedesDemos figure galleryModel Comparison Examples

Terms of agreement:

I understand that Palamedes is free software that may not be used
for commercial purposes without express permission from the
authors, and cannot be reproduced and/or distributed in original or
modified form under a different name and/or authorship

... and don't forget to check back periodically for updates. Current version is 1.6.0
Type PAL_info into the Matlab or Octave command window to find out what version you have.

In case you are running a version of Matlab prior to R2010b, you will also need
a function called iscolumn.m which checks whether the input array is a column
vector. Either upgrade Matlab or save the code below as 'iscolumn.m' in your
Palamedes folder. Once you upgrade to R2010b or higher, delete the 'iscolumn.m'
you created to avoid Matlab warning about duplicate filenames.
 
function col = iscolumn(a)
%Checks whether input array is a column vector

col = false;

if size(a,2) == 1 && ndims(a) == 2
    col = true;
end

end