is it possible to specify variable name in character using dlmread
显示 更早的评论
Hi there. in my data file first row and ist column contains the character values, in this case how can i specify ist row and ist column values (names) using dlmread? if you suggest to use readtable command than in that can how can i specify same case?
回答(1 个)
KSSV
2018-8-13
T = readtable('an.txt') ;
T.(1)(1) % first row and first column
4 个评论
Saba Yousaf
2018-8-13
KSSV
2018-8-13
Check T all the data is already read. T.(1) gives you entire first column. T.(i) gives you entire i'th column.
Saba Yousaf
2018-8-13
KSSV
2018-8-13
T(1,:) gives you the entire first row.
类别
在 帮助中心 和 File Exchange 中查找有关 Standard File Formats 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!