代码搜索:normal
找到约 10,000 项符合「normal」的源代码
代码结果 10,000
www.eeworm.com/read/2764/19804
gif mod_expl_plane_normal.gif
www.eeworm.com/read/2788/21942
gif mod_expl_plane_normal.gif
www.eeworm.com/read/12863/248078
bmp voip_phone1_normal.bmp
www.eeworm.com/read/37302/900955
m evolve_normal_eno3.m
function [delta, H1_abs, H2_abs] = evolve_normal_ENO3(phi, dx, dy, Vn)
%
% Finds the amount of evolution under a force in
% normal direction and using 3rd order accurate ENO scheme
%
% Author: Ba
www.eeworm.com/read/37302/900957
m evolve_normal_eno1.m
function [delta, H1_abs, H2_abs] = evolve_normal_ENO1(phi, dx, dy, Vn)
%
% Finds the amount of evolution under a force in
% normal direction and using 1st order accurate ENO scheme
%
% Author: Ba
www.eeworm.com/read/37302/900966
m evolve_normal_vector_weno.m
function [delta, H1_abs, H2_abs] = evolve_normal_vector_WENO(phi, dx, dy, Vn_ext, u_ext, v_ext)
%
% Finds the amount of evolution under a force in
% normal direction and a force based on a vector f
www.eeworm.com/read/37302/900970
m get_dt_normal_vector.m
function [dt] = get_dt_normal_vector(alpha, dx, dy, H1_abs, H2_abs)
%
% Calculate the Euler time step.
%
% Author: Baris Sumengen sumengen@ece.ucsb.edu
% http://vision.ece.ucsb.edu/~sumengen/
%
www.eeworm.com/read/37302/900972
m init_normal_eno2.m
function [Vn_ext] = init_normal_ENO2(Vn)
%
% Extends boundary of Vn
%
% Author: Baris Sumengen sumengen@ece.ucsb.edu
% http://vision.ece.ucsb.edu/~sumengen/
%
Vn_ext = zeros(size(Vn)+4);
Vn
www.eeworm.com/read/37302/900973
m init_normal_eno3.m
function [Vn_ext] = init_normal_ENO3(Vn)
%
% Extends boundary of Vn
%
% Author: Baris Sumengen sumengen@ece.ucsb.edu
% http://vision.ece.ucsb.edu/~sumengen/
%
Vn_ext = zeros(size(Vn)+6);
Vn
www.eeworm.com/read/37302/900974
m init_normal_eno1.m
function [Vn_ext] = init_normal_ENO1(Vn)
%
% Extends boundary of Vn
%
% Author: Baris Sumengen sumengen@ece.ucsb.edu
% http://vision.ece.ucsb.edu/~sumengen/
%
Vn_ext = zeros(size(Vn)+2);
Vn