Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
integer*2 input(8192)
open(unit=67, file = 'binary_file.mat', status = 'old', form = 'unformatted', access='sequential', recl =2)
num_word = 1
do while (.not. EOF(67))
read(67) input(num_word)
num_word = num_word + 1
enddo