Take a look at this documentation page.
extract letters in country name
조회 수: 3 (최근 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: ’China’ GDP: 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
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.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!