这个是追赶法的一个公式,请帮忙看看是对的吗?这是追赶法的公式吧?追赶法的公式是这个吧
1条回答 默认 最新
- joel_1993 2021-11-02 21:41关注
你好追赶法公式就是这样,只是三角分解更简单了罢了,下面代码供参考:
function x = chase(a, b, c, d) if(numel(a)+1~=numel(b)||numel(b)~=numel(c)+1||numel(b)~=numel(d)) error('Not valid input, please check length of a,b,c,and d!') end a = a(:); b = b(:); c = c(:); d = d(:); if(abs(b(1))-abs(c(1))<=0 || abs(b(end))-abs(a(end))<=0 || abs(a(end))<=0 || abs(c(1))<=0) error('Input not satisfy the Tri condition'); elseif(numel(b)>=3 && any(abs(b(2:end-1))-abs(a(1:end-1))-abs(c(2:end))<0)) error('Input not satisfy the Tri condition'); end p = zeros(size(b)); q = zeros(size(a)); n = numel(b); p(1) = b(1); for i = 1:1:n-1 q(i) = c(i)/p(i); p(i+1) = b(i+1) - a(i)*q(i); end y = zeros(n,1); y(1) = d(1)/p(1); for i = 2:1:n y(i) = (d(i) - a(i-1)*y(i-1))/p(i); end x = zeros(n,1); x(n) = y(n); for j = n-1:-1:1 x(j) = y(j) - q(j)*x(j+1); end end
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 1无用
悬赏问题
- ¥15 win2012 iscsi ipsec
- ¥15 封装的 matplotlib animation 不显示图像
- ¥15 python摄像头画面无法显示
- ¥15 关于#3d#的问题:d标定算法(语言-python)
- ¥15 cve,cnnvd漏洞扫描工具推荐
- ¥15 图像超分real-esrgan网络自己训练模型遇到问题
- ¥15 如何构建全国统一的物流管理平台?
- ¥100 ijkplayer使用AndroidStudio/CMake编译,如何支持 rtsp 直播流?
- ¥15 用js遍历数据并对非空元素添加css样式
- ¥15 使用autodl云训练,希望有直接运行的代码(关键词-数据集)