c3.m
来自「这是一个模拟第3类模式地震波的matlab脚本。 This a collect」· M 代码 · 共 9 行
M
9 行
%C3.m Non dimensional kernel function for Mode III% C_{III} in Geubelle and Rice Eq.26% WARNING: T=0 cannot be obtained with this formula% (division by zero) and it is not implemented% as special case for performance reasons% Whenever needed: C3(0) = 0.5function c = C3(T) c = besselj(1,T) ./ T ;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?