MATLAB: What does x=val(1,:)

valval(1x=val(1

I should use a Nx1 vector of doubles as my input signal x for my function. What do I get if a use: >>load (´My_Signal.m`) and then >>x =val(1,:); ?

Best Answer

"x" is set to the first row of "val" (thus "x" is a vector of size 1xN where N is the number of columns of "val")
Best wishes
Torsten.