필터 지우기
필터 지우기

problem accessing array of imported CSV file

조회 수: 2 (최근 30일)
fima v
fima v 2021년 9월 11일
편집: Image Analyst 2021년 9월 11일
Hello, after importing CSV file i have a variable 1D array called col
but when i try to accsess it in different forms as shown bellow it gives me those errors.
only when i did col(1) it worked.
when do i use each tipe of parenthsis in arrays?
Thanks.

답변 (1개)

Image Analyst
Image Analyst 2021년 9월 11일
편집: Image Analyst 2021년 9월 11일
You need to use parentheses, not brackets:
col(1)
See the FAQ:
for an explanation for when to use each. In general, parentheses are for elements themselves. Brackets define arrays. Braces mean "contents of" container variables like cell arrays and tables.

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by