This should be a simple question for Matlab users out there.
The parameter y is 1 x 81 matrix (an array). My function looks like this:
function [ ] = test( y )
length(y)
end
Yet when call test I get the following error:
"??? Attempt to reference field of non-structure array."
What did I do wrong?