Extracting the column value of a table
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I have a table with two columns which is symbol and value, for eg aggtc 2 agtg 2 aggc 3 etc.I want to extract the column values of symblos that is aggtc,agtg,aggc and so on how is this possible.please give me a solution.
0 comentarios
Respuestas (1)
Stalin Samuel
el 11 de Jun. de 2017
Let us assume that you have the table like this
table_name =
[ aggtc, 2]
[ agtg, 2]
[ aggc, 3]
then column values of symblos can be extracted by
table_name(:,1)//gives you the below result
aggtc
agtg
aggc
0 comentarios
Ver también
Categorías
Más información sobre Genomics and Next Generation Sequencing en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!