select/save part of database into another database

I have database A of four columns: a, b, c, d, and want to save those rows of d values of less than -10 into another database B. How can I do it?

2 comentarios

Did you mean a Matlab table or matrix or an SQL Database ?
addy fang
addy fang el 17 de Jul. de 2020
Editada: addy fang el 17 de Jul. de 2020
It is an Excel table, can be read in to a Matlab matrix. For example, the first column is the name, second is address, third is height, and forth column is weight loss. I need to retable those with certain weight loss, less then -10 lbs.

Iniciar sesión para comentar.

 Respuesta aceptada

Mohammad Sami
Mohammad Sami el 17 de Jul. de 2020
I assume you are able to read the excel directly using the readtable function.
% excelfilepath = 'C:\...';
% DBA = readtable(excelfilepath);
DBB = DBA(DBA.d < -10,:);
% exceloutpath = 'C:\....';
% writetable(DBB,exceloutpath);

3 comentarios

addy fang
addy fang el 17 de Jul. de 2020
I tried, it gave some error:
z1=y(y.2<-10, :);
Error: Invalid expression. Check for missing multiplication operator, missing or unbalanced
delimiters, or other syntax error. To construct matrices, use brackets instead of parentheses.
"2" in y.2 is not a valid vairable or column name. If y is a table see what is the column name.
If y is a matrix, use
z1=y(y(:,2)<-10, :);
addy fang
addy fang el 19 de Jul. de 2020
Great. Thank you.

Iniciar sesión para comentar.

Más respuestas (0)

Preguntada:

el 17 de Jul. de 2020

Comentada:

el 19 de Jul. de 2020

Community Treasure Hunt

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

Start Hunting!

Translated by