Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 100281bd authored by DIB Elian's avatar DIB Elian
Browse files

Added function to compute file bit size

parent eedd7db2
No related branches found
No related tags found
No related merge requests found
function [nbBits,info_] = nbBits(filename)
%NBBITS Summary of this function goes here
% Detailed explanation goes here
info_ = dir(filename);
nbBits = info_.bytes*8;
end
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment