How can I change this into a column, at the moment all 750 entries are on one row?
p = normal(1:750)-1;
I have tried:
columns = 1;
p = normal(1:750)-1;
p = p(1:columns);
I have also tried:
rows = 1000;
p = normal(1:750)-1;
p = p(1:rows)';
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…