필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Transforming Result to Meaningful Information

조회 수: 2 (최근 30일)
RDG
RDG 2011년 12월 8일
마감: MATLAB Answer Bot 2021년 8월 20일
Suppose I have a cell array as such:-
a=cell(5,1);
for i=1:5
a{i}=i
end
I have an excel file with 2 columns which describe the following:-
1 John
2 Peter
3 Terry
4 Alice
5 Mary
Is there a way to point the cell array result to the following information instead of displaying integer as the final result?

답변 (1개)

Fangjun Jiang
Fangjun Jiang 2011년 12월 8일
You probably mean indexing. For example
Names={'John', 'Peter','Terry','Alice','Mary'};
ind=[3 1 4 2];
SelectedNames=Names(ind)
It's better to use double array (like the variable 'ind' in the above code) than cell array for your 'a' variable if it contains scalar numerical value in every cell. If you have to use cell array, you can use
a=num2cell(1:5)

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by