Make name in for loop and read table

조회 수: 5 (최근 30일)
Dion Theunissen
Dion Theunissen 2021년 6월 28일
답변: Jeff Miller 2021년 6월 29일
Hi,
How can I make this working? now i got the error "Dot indexing is not supported for variables of this type."
I want to use that name and open the table of the name i created.
for p = 1:7
Name = strcat('ScanRec',num2str(p))
vins1 = unique(Name.vin);
end

답변 (1개)

Jeff Miller
Jeff Miller 2021년 6월 29일
I guess you have tables called ScanRec1, ScanRec2, ...? If so, you can do almost what you want by making each table a field within a structure S, something like this:
S.ScanRec1 = table(vin,whatever);
S.ScanRec2 = table(vin,whatever);
% and so on
Then your for loop would be something like this:
for p = 1:7
Name = strcat('ScanRec',num2str(p))
vins1 = unique(S.(Name).vin);
end

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by