Borrar filtros
Borrar filtros

transform column of inequality data??

1 visualización (últimos 30 días)
Daniel Hines
Daniel Hines el 27 de Feb. de 2020
Respondida: Prabhan Purwar el 5 de Mzo. de 2020
Hello, I have a column of inequality data (see attached) that I am trying to transform into 3 new columns but I don't know the right syntax/formula. The first column containing the number values for all of the less than inequality data, the second column containing all of the data points that were reported as a number, and the third column containing all of the number values for the data points that were reported as greater than. I was thinking it would be some combination of using logicals and filter operators but I have been unsuccessful. What is the appropriate code to do this? Thank you for any help you can give me
Example:
Dan
  1 comentario
darova
darova el 27 de Feb. de 2020
Can you show yuor attempts? What about something like that
out3 = data > 32;

Iniciar sesión para comentar.

Respuestas (1)

Prabhan Purwar
Prabhan Purwar el 5 de Mzo. de 2020
Hi,
Kindly try using the following code:
clc
close all
clear
var=readcell('data_example (3)'); %Load data
tbl{1,1}=var{1,2};
tbl{1,2}=var{1,3};
tbl{1,3}=var{1,4};
for i=2:13
a=var{i,1};
tfg=strcmp(a(1),'>'); %String compare
tfs=strcmp(a(1),'<');
if(tfg==1) tbl{i,3}=a(2:end);
end
if(tfs==1) tbl{i,1}=a(2:end);
end
if (tfs==0 && tfg==0 ) tbl{i,2}=a(1:end);
end
tfs=0;tfg=0;
end
Output:

Categorías

Más información sobre Downloads en Help Center y File Exchange.

Etiquetas

Aún no se han introducido etiquetas.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by