Extracting the column value of a table
조회 수: 5(최근 30일)
표시 이전 댓글
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
답변(1개)
Stalin Samuel
2017년 6월 11일
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
참고 항목
범주
Find more on Biotech and Pharmaceutical in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!