Info

此问题已关闭。 请重新打开它进行编辑或回答。

could anyone help me how to split different set of numbers sepaartely

1 次查看(过去 30 天)
i am having three different sets of numbers displayed in the same line as the output say for example {1} {2 3} {4}.Could anyone please help me how to split it in three different lines inorder to get the output as 1 2 3 4

回答(2 个)

KSSV
KSSV 2018-9-6
A = [{1} {2 3} {4}] ;
B = cell2mat(A)
  7 个评论
jaah navi
jaah navi 2018-9-6
i am making use of partition
C = partitions(3)
home
partdisp(C).
If i run it gives
The 5 partitions of set {1 2 3}:
{1 2 3}
{1 2} {3}
{1 3} {2}
{1} {2 3}
{1} {2} {3}

Shannon Cherry
Shannon Cherry 2018-9-6
Try this for your duplicate question on how to remove set bracket
regexprep(C, '\{(.*)\}', '$1')

此问题已关闭。

标签

Community Treasure Hunt

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

Start Hunting!

Translated by