代码搜索:normal
找到约 10,000 项符合「normal」的源代码
代码结果 10,000
www.eeworm.com/read/5582/48470
png shuttle_normal-m.png
www.eeworm.com/read/5582/50084
png shuttle_normal-m.png
www.eeworm.com/read/6880/104370
gif vmos_normal_01.gif
www.eeworm.com/read/9514/169230
bmp volum_icon_normal.bmp
www.eeworm.com/read/13871/284309
m matrix_normal_pdf.m
www.eeworm.com/read/37302/900951
m init_normal_weno.m
function [Vn_ext] = init_normal_WENO(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/900961
m llf_normal_vector.m
function [H, alpha_x, alpha_y] = LLF_normal_vector(dx, dy, Vn_ext, u_ext, v_ext, phi_x_minus, phi_x_plus, phi_y_minus, phi_y_plus)
%
% Estimate H (approximately) using Stencil Local
% Lax-Friedric
www.eeworm.com/read/37302/900964
m evolve_normal_weno.m
function [delta, H1_abs, H2_abs] = evolve_normal_WENO(phi, dx, dy, Vn)
%
% Finds the amount of evolution under a force in
% normal direction and using 5th order accurate WENO scheme.
%
% Author:
www.eeworm.com/read/37302/900983
m get_dt_normal.m
function [dt] = get_dt_normal(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/
%
if
www.eeworm.com/read/37302/900992
m select_der_normal.m
function [der] = select_der_normal(Vn, der_minus, der_plus)
%
% Under a force in the normal direction,
% select a derivative value given (plus) and (minus) derivatives.
%
% Author: Baris Sumengen