evalccm.m
来自「航天工程工具箱」· M 代码 · 共 12 行
M
12 行
function xc=evalccm(x,f)
%EVALCCM Evaluate center of moments (continuous).
% XC = EVALCCM(X,F) evaluates the center of moments
% for a continuous force distribution F along a line X
% on the body. XC is thus the point at which all forces
% seems to be concentrated.
%
% See also EVALDCM.
% Copyright (c) 2003-06-25, B. Rasmus Anthin.
xc=trapz(x,x.*f)/trapz(x,f);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?