This repository has been archived by the owner. It is now read-only.
Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
ImageIO/andor/atsif_setfileaccessmode.m
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
14 lines (12 sloc)
503 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function ret=atsif_setfileaccessmode(readmode) | |
%AT_U32 ATSIF_SetFileAccessMode(ATSIF_ReadMode _mode) | |
% | |
%Description : This function is used to select if the entire SIF file should be read | |
% or just the header section. The read mode determines if the whole file | |
% or just the header information is read. | |
% | |
%Arguments : 0 - Read all | |
% 1 - Header Only | |
% | |
%Return : Check the help for return code meanings | |
ret = atsifiomex('ATSIF_SetFileAccessMode',readmode); |