Permalink
Switch branches/tags
Nothing to show
Find file
Fetching contributors…
Cannot retrieve contributors at this time
13 lines (12 sloc) 345 Bytes
function msk=get_lines_executable(obj)
% get a mask indicating which lines are executable
%
% msk=get_lines_executable(obj)
%
% Input:
% obj MOcovMFile instance
%
% Output:
% msk Nx1 logical mask, with msk(k)==true indicating
% that the k-th line can be exectued
msk=obj.executable;