Manual 4

[ matlab ] textscan

목표 1. 설명 2. format 3. parameter 설명 일정한 양식을 가진 텍스트 파일(.txt , .csv)의 데이터를 읽을 때 사용한다. 1. 파일을 열고 파일 ID를 가져온다. fid = fopen('test.csv') 2. 해당 파일의 양식에 맞춰 읽어들일 양식을 지정한다. Mathworks 의 공식 문서를 인용하면 - "textscan은 파일의 데이터가 formatSpec의 변환 지정자와 일치하는지 확인합니다." - "textscan은 전체 파일에 formatSpec을 다시 적용하고 formatSpec을 데이터와 일치시킬 수 없는 경우 중지합니다." 간단히 말해서 →형식을 제대로 맞추지 않으면 데이터를 읽다가 중단될 수 있기 때문에 올바른 format을 지정하는 것이 중요하다. forma..

matlab 2023.07.31

[ m_map ] m_map 사용법_2 (지도 생성)

이전에 m_map의 간단한 메뉴얼을 소개 했습니다. https://hummingstereo.tistory.com/63 [ matlab ] m_map 사용법 1.https://www.eoas.ubc.ca/~rich/map.html 접속 M_Map: A Mapping package for Matlab A mapping package for Matlab You have collected your data, loaded it into Matlab, analyzed everything to death, and now you want to make a simple map showing how it relates hummingstereo.tistory.com 해당 글의 그림은 육지 영역을 제외한 좌표에서 contou..

matlab 2023.05.03