Borrar filtros
Borrar filtros

Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

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

1 visualización (últimos 30 días)
jaah navi
jaah navi el 6 de Sept. de 2018
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
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

Respuestas (2)

KSSV
KSSV el 6 de Sept. de 2018
A = [{1} {2 3} {4}] ;
B = cell2mat(A)
  7 comentarios
KSSV
KSSV el 6 de Sept. de 2018
How you are getting it? Can you tell me what does class(data) shows?
jaah navi
jaah navi el 6 de Sept. de 2018
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 el 6 de Sept. de 2018
Try this for your duplicate question on how to remove set bracket
regexprep(C, '\{(.*)\}', '$1')
  2 comentarios
jaah navi
jaah navi el 6 de Sept. de 2018
It gives error stating Error using regexprep All cells must be strings.
Shannon Cherry
Shannon Cherry el 6 de Sept. de 2018
input = '{1 2 3}'
output = regexprep(input, '\{(.*)\}', '$1')
This is working for me.

La pregunta está cerrada.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by