Extract values from a double list

조회 수: 7 (최근 30일)
THEODOROS
THEODOROS 2022년 10월 30일
편집: Jan 2022년 10월 30일
Hi,
I am trying to learn Matlab and I have two questions.
1)How can I extract from the below double the first element (8)?
myList=[8;6;9;0;6;5;4;5;6;7];
2)Also how can I replace this:
1×4 cell array
{'A'} {'B4'} {'G6'} {'D5'}
to this
A -> B4 -> G6 -> D5
Thank you in advance.
  댓글 수: 1
KALYAN ACHARJYA
KALYAN ACHARJYA 2022년 10월 30일
myList=[8;6;9;0;6;5;4;5;6;7];
myList(1) % Index posotion
ans = 8
The second question I don't understand, is it a single cell or cells within cell? If you are a beginner, go through MATLAB Onramp

댓글을 달려면 로그인하십시오.

채택된 답변

Jan
Jan 2022년 10월 30일
편집: Jan 2022년 10월 30일
Maybe the 2nd question means:
C = {'A', 'B4', 'G6', 'D5'};
D = strjoin(C, ' -> ')
D = 'A -> B4 -> G6 -> D5'
Use the online tutorial Kalyan has suggested. This is more efficient than asking the basics in the forum.

추가 답변 (0개)

카테고리

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

제품


릴리스

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by