how do i "re attach" string columns to data columns for identification?
정보
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
이전 댓글 표시
when i input data, matlab always separates my string data( column headers and row id's) from the data it represents...i have been able to work around this because matlab keeps everything in place and it is easy to slap them back together outside of matlab... but i am working with data brushing and graphs, the databrushing retrieves the data values but not the row id...so how do i "link' my data with its original identifiers in Matlab???
댓글 수: 1
Sean de Wolski
2013년 12월 19일
Can you provide a small example?
답변 (1개)
Sean de Wolski
2013년 12월 19일
If I understand you correctly, here is a small example:
x = rand(100,1);
y = rand(100,1);
names = char(randi(100,[100 3])+50); %random names
scatter(x,y);
%Do the brushing
%
% Brush your selection and then right-click, create variable, name it
% xbrush
%
[~,idx] = ismember(xbrush,[x y],'rows'); %locate them
names(idx) %extract names
댓글 수: 11
john borsellino
2013년 12월 19일
Sean de Wolski
2013년 12월 19일
Well the cell array could hold your strings rather than the char that I had. How do you have the strings stored now?
To convert my names to a cell, just write
names = cellstr(names)
john borsellino
2013년 12월 19일
john borsellino
2013년 12월 19일
Sean de Wolski
2013년 12월 19일
Don't use ans!! It's overwritten every time you do anything. Try my example first. Then change it to use idx (indices corresponding to brushed points) into your column of ids.
john borsellino
2013년 12월 19일
Sean de Wolski
2013년 12월 19일
So data is a cell array?
Are you using R2013b by any chance?
john borsellino
2013년 12월 19일
john borsellino
2013년 12월 19일
john borsellino
2013년 12월 19일
Sean de Wolski
2013년 12월 20일
Just attach your file and the code you're using right now.
이 질문은 마감되었습니다.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!