OtMatlab

버전 1.2.0.0 (259 KB) 작성자: Johan Meijdam
Matlab interface to Omnitrans transport planning database.
다운로드 수: 830
업데이트 날짜: 2009/5/20

라이선스 보기

To be able to use Omnitrans transport data this Matlab interface can be used.

Usage is simple. The following example returns all names starting with an H:

OtStart();
hquery = OtQueryNew();
OtQuerySetSQL(hquery, 'SELECT name AS Hnames FROM "name.DB" AS nametable WHERE name LIKE "H%"');
OtQueryOpen(hquery);
disp(OtQueryFields(hquery));
OtQueryFirst(hquery);
while ~OtQueryEof(hquery)
disp(OtQueryGetAll(hquery));
OtQueryNext(hquery);
end
OtQueryClose(hquery);
OtQueryFree(hquery);
OtStop();

인용 양식

Johan Meijdam (2025). OtMatlab (https://kr.mathworks.com/matlabcentral/fileexchange/12306-otmatlab), MATLAB Central File Exchange. 검색 날짜: .

MATLAB 릴리스 호환 정보
개발 환경: R2008a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Database Toolbox에 대해 자세히 알아보기
도움

도움 준 파일: Matlab link to OmniTRANS 5.1

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.2.0.0

* Contains some bug fixes.
* Updated to Matlab 7.6 (R2008a).
* Removed Microsoft's SDL warnings.

1.1.0.0

Removed LGPL to be replaced by Mathwork's BSD.

1.0.0.0