代码搜索:efficient

找到约 1,594 项符合「efficient」的源代码

代码结果 1,594
www.eeworm.com/read/358669/10182468

m calib_gui.m

%function calib_gui(mode) % calib_gui(mode) % % Runs the Camera Calibration Toolbox. % Set mode to 1 to run the memory efficient version. % Any other value for mode will run the normal version
www.eeworm.com/read/297947/7984259

m perform_median_filtering.m

function M = perform_median_filtering(M,k) % perform_median_filtering - perform moving average median % % M = perform_median_filtering(M,k); % % k is the half width of the window (detult k=1). %
www.eeworm.com/read/143706/12850392

m scale_cols.m

function y = scale_cols(x, s) % y(:,i) = x(:,i)*s(i) % This is more efficient than x*diag(s) [num_rows, num_cols] = size(x); y = x.*repmat(s(:)', num_rows, 1);