reshape column vector data in Matlab
input:
import data
2. transpose the data
3. reshape the data into array
code: matlab
load x.dat X=x.dat; X=X.' % transpose; x_array=reshape(X, 499, [])
input:
import data
2. transpose the data
3. reshape the data into array
code: matlab
load x.dat X=x.dat; X=X.' % transpose; x_array=reshape(X, 499, [])