필터 지우기
필터 지우기

Address a variable using the name of another variable

조회 수: 1 (최근 30일)
Philipe
Philipe 2013년 12월 4일
편집: Matt J 2013년 12월 4일
Greetings. I`m using Matlab to analyse some of my biology experiments and I`m currently having problems. Since I`m using a lot of strange variables and a lot of data, I`ll summarise my problems in this example:
% create a 1x2 cell with chars
list{1,1}='A';
list{1,2}='B';
%create a simple vector
testA=[1 2 3 4 5 6 7 8 9 10];
%get the mean
mean_testA=mean(testA);
What I want is to be able to use the char in “list” to address testA.
Something like mean_testA=mean(test list{1,1})
Thank you!

채택된 답변

Sean de Wolski
Sean de Wolski 2013년 12월 4일
Sounds like you probably want to look into using structures with dynamic fieldnames
Also, in the FAQ:

추가 답변 (1개)

Matt J
Matt J 2013년 12월 4일
편집: Matt J 2013년 12월 4일
It seems to make the most sense to put your actual data in test_list{i}, e.g.,
test_list{1,1}=testA;
Then your command mean_testA=mean(test list{1,1}) will do exactly what you want. You can also do things like
S.A=testA;
S.B=whatever;
testlist=fieldnames(S);
mean_testA = mean(S.(testlist{1}))
mean_testB = mean(S.(testlist{2}))

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by