代码搜索:插值优化
找到约 10,000 项符合「插值优化」的源代码
代码结果 10,000
www.eeworm.com/read/257948/11901487
c 9-7.c
#include"stdio.h"
#define N 32768
main()
{
clrscr();
#if (N>32767) /*超出上界*/
#error N value overflow /*则提示N的值上溢*/
#elif (N
www.eeworm.com/read/257196/11944566
m samp2_4.m
%Samp2_4
n=[0:100]; %给出序号序列
x=2*sin(0.02*pi*n+pi/4); %给出值序列
stem(n,x) %绘值离散图
xlabel('n');ylabel('x(n)');title('正弦序列') %必要标记
grid on; %添加网
www.eeworm.com/read/152930/12073598
vb assemblyinfo.vb
Imports System.Reflection
Imports System.Runtime.InteropServices
' 程序集的常规信息通过下列
' 属性集控制。更改这些属性值可
' 修改与程序集关联的信息。
' 检查程序集的属性值
www.eeworm.com/read/152522/12107976
cpp p1-68.cpp
#include
//定义f()函数
f(int x,int y) //f()的参数以值方式传递
{
++x;
--y;
cout
www.eeworm.com/read/340692/12139457
bak main.h.bak
#include "float.h"
unsigned int temperature;
long float AdValue ;
extern union p_temp
{
unsigned char c[2];
unsigned int X;
}upper_limit,lower_limit,difference;/*温度上限设定值,下限设定值,和偏差值*/
extern
www.eeworm.com/read/151608/12188423
m exm0831_1.m
%exm0831_1.m
for i=1:10; %i依次取1,2,…10,.
x(i)=i; %对每个i值,重复执行由该指令构成的循环体,
end;
x %要求显示运行后数组x的值。
www.eeworm.com/read/252852/12260948
vb assemblyinfo.vb
Imports System.Reflection
Imports System.Runtime.InteropServices
' 程序集的常规信息通过下列
' 属性集控制。更改这些属性值可
' 修改与程序集关联的信息。
' 检查程序集的属性值
www.eeworm.com/read/149884/12339390
aspx ch06-02-06.aspx
Ch06-02-06.aspx VB.NET 程序的按值传递调用
' VB.NET 程序的按值传递调用
Function FunctionA(ByVal intA A