代码搜索:精度提升
找到约 3,114 项符合「精度提升」的源代码
代码结果 3,114
www.eeworm.com/read/147001/12594410
m min_f.m
function y = min_F(x,s_k)
%MIN_F Summary of this function goes here
% Detailed explanation goes here
% 一维搜索,黄金分割法
a=0;
b=50;
l=0.000001;%终止精度
s_temp=s_k.';
x1=a+0.382*(b-a);
x2=a+b-x1;
whil
www.eeworm.com/read/147001/12594421
asv desend.asv
format long %Scaled fixed point format, with 15 digits for double; 8 digits for single.
x=[0,0];
x=input('请输入初始值[x0,x1]=');
s=input('请输入初始精度s=');
g=D_F(x);
g=g.';%转置为列向量;
while(norm(g)>s)
www.eeworm.com/read/147001/12594424
asv min_f.asv
function y = min_F(x,s_k)
%MIN_F Summary of this function goes here
% Detailed explanation goes here
% 一维搜索,黄金分割法
a=0;
b=50;
l=0.000001;%终止精度
s_temp=s_k.';
x1=a+0.382*(b-a);
x2=a+b-x1;
whil
www.eeworm.com/read/238345/13892100
cpp lvbo.cpp
#include"stdio.h"
#include"math.h"
#include"stdlib.h"
#define PI 3.1415926
/*双精度型的一维数组,输入(输出)信号的实部和虚部*/
/*m0:2 的次方数,FFT的点数nfft=2m0*/
/*inv= 1 forward transform, inv = -1 inverse transform*/
voi
www.eeworm.com/read/134838/13973219
txt 新建 文本文档.txt
#include
#include
/*黄金分割法求最小值的C++程序,部分变量及函数书写并不规范*/
//δ为题给精度
int n = (lnδ/ln0.618 + 1) + 1;
int i;
float f(float ai, float bi)
{
a(i + 1) = ai + 0.618(bi - ai);
return
www.eeworm.com/read/133875/14019974
m exm09652_1.m
%exm09652_1.m 用于ITAE标准型系数的寻优
clear
global a ss
a0=[3.3 6.6 8.6 7.5 3.9]; %被优化系数的初值
Tspan=(0:500)/10; %计算ITAE值用的时间采样向量
options.TolFun=0.0001; %设定优化目标函数的精度
option
www.eeworm.com/read/103618/15727883
m exm09652_1.m
%exm09652_1.m 用于ITAE标准型系数的寻优
clear
global a ss
a0=[3.3 6.6 8.6 7.5 3.9]; %被优化系数的初值
Tspan=(0:500)/10; %计算ITAE值用的时间采样向量
options.TolFun=0.0001; %设定优化目标函数的精度
option
www.eeworm.com/read/290926/8451477
txt 219.txt
软件/中国/微笑/曲线/开源/软件/中国/产业/微笑/曲线/创新/整个/基础/软件/新闻/新闻/论坛/小组/下载/读书/搜索/游戏/视频/人才/书店/程序/位置/新闻/频道/正文/软件/中国/微笑/曲线/来自/收藏/产业/重新/开源/教育/当然/放眼/全球/长期/在世/软件/产业/末端/中国/软件/实现/整体/提升/中间/而是/蔓延/全世界/开放/代码/震荡/因为/使得/中国/突然/世界/列强/同 ...
www.eeworm.com/read/170427/9807493
cpp bindwt97.cpp
// LiftDwt.cpp: implementation of the CLiftDwt class.
// 作者:张增辉 国防科技大学理学院数学系
// QQ:15105473 email: zenghui1980@163.com
//
// 此程序为二进制9-7小波提升格式的变换,算法中只有整数加法和移位
// 程序中了使用的小波滤波器为2000年 IEEE Imag
www.eeworm.com/read/163357/10165033
cpp bindwt97.cpp
// LiftDwt.cpp: implementation of the CLiftDwt class.
// 作者:张增辉 国防科技大学理学院数学系
// QQ:15105473 email: zenghui1980@163.com
//
// 此程序为二进制9-7小波提升格式的变换,算法中只有整数加法和移位
// 程序中了使用的小波滤波器为2000年 IEEE Imag