numeric array to cell array

Hi
I want to convert the following numeric array to cell array of cells having two elements each. Any help?
stress = [0 20 -160 150 -40 330 -40 170 -20 180]
what is required is:
cycles = [[0 20] [-160 150] [-40 330] [-40 170] [-20 180]]

2 个评论

Do you mean:
cycles = {[0 20], [-160 150], [-40 330], [-40 170], [-20 180]}
?

请先登录,再进行评论。

 采纳的回答

cycles=reshape(stress,2,[])
%you can also create cell array
out=arrayfun(@(x) cycles(:,x),1:size(cycles,2),'un',0)

更多回答(1 个)

Jan
Jan 2013-6-13
编辑:Jan 2013-6-13
stress = [0 20 -160 150 -40 330 -40 170 -20 180];
C = num2cell(reshape(stress, 2, []).', 2);

类别

帮助中心File Exchange 中查找有关 Stress and Strain 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by