extract letters in country name

조회 수: 3 (최근 30일)
Ileana Gonzalez
Ileana Gonzalez 2018년 9월 30일
댓글: Ileana Gonzalez 2018년 9월 30일
The file contains a 10-by-1 structure array called S. The 10 elements in S correspond to 10 different countries, whose name, GDP per capita (in USD), population and land area (in square kilometers) are stored in different structure fields. For example, S(1) leads to the output
ans =
struct with fields:
CountryName: ChinaGDP: 8643
Population: 1.4095e+09 Area: 9326410
In one line of code, extract the first 3 letters of the name of the 4th country stored in S and save it to a string called country4. I don't know how to do this. SO i have an idea of something like S(4,1) but there where would i include the (1:3) to extract just the three letters? I just need guidance i really want to learn this no answers Thanks.

채택된 답변

Image Analyst
Image Analyst 2018년 9월 30일
It's not S(4,1), it's S(4) and then you need the field name, CountryName, and it's the CountryName that takes the index 1:3. Try it. Experiment around. If you still need help with your homework, write back.
  댓글 수: 1
Ileana Gonzalez
Ileana Gonzalez 2018년 9월 30일
Actually jk I got it!! thanks!!

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

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by