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_readfromfile.m
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
15 lines (13 sloc)
555 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_readfromfile(filename) | |
%AT_U32 ATSIF_ReadFromFile(AT_C * _sz_filename) | |
% | |
%Description : This function is used to open a SIF file where the file name and path | |
% are contained in the character array _sz_filename. | |
% | |
%Arguments : string containing the file path | |
% | |
%Return : Check the help for return code meanings | |
% | |
%Note : If the file is opened with an access mode of ATSIF_ReadAll then ATSIF_CloseFile | |
% must be called to free access to the file. | |
ret = atsifiomex('ATSIF_ReadFromFile',filename); |