-
matlabtext2
考察温度x对产量y的影响,测得下列10组数据:求y关于x的线性回归方程,检验回归效果是否显著,并预测x=42℃时产量的估值及预测区间(置信度95 )
示例包含在内(X on the output of the temperature study of the impact of y, measured the following 10 sets of data: for y on x of the linear regression equation to test whether the effect of a significant regression and prediction when x = 42 ℃, and the valuation of yield prediction interval (confidence level 95 ) sample included)
- 2020-12-14 17:49:14下载
- 积分:1
-
sca
说明: SCA算法实现,主要针对凸优化问题进行求解,可以在其他地方使用。(SCA algorithm, mainly for convex optimization problems, can be used in other places.)
- 2021-01-19 17:58:42下载
- 积分:1
-
US6298463
turbo codes simulation
- 2010-11-16 22:10:03下载
- 积分:1
-
Downlink-Scheduling-in-3GPP-LTE
LTE Downlink scheduler
- 2013-04-30 01:30:12下载
- 积分:1
-
puma560
6轴机械臂的运动学正逆解算法,仅供参考。(6-axis manipulator kinematics inverse solution algorithm are for reference purposes only.)
- 2016-04-06 20:35:48下载
- 积分:1
-
matlab_programming_the_memory_test_program_source_
matlab程序设计之记忆力测试程序源码matlab programming the memory test program source code(matlab programming the memory test program source code matlab programming the memory test program source code)
- 2010-08-02 09:47:09下载
- 积分:1
-
exam53y
采用卡尔曼滤波的阻尼系数的非线性估计:用于较小但未知阻尼系数,增强阻尼因子的可测性(This implementation uses lower (but unknown)damping to improve damping observability.)
- 2009-12-23 20:03:55下载
- 积分:1
-
通信原理PCM
通信原理实验中的均匀和非均匀的pcm两种编码方式,附有详细的说明.(communication principle experiment uniform and non-uniform both PCM encoding, with detailed explanations.)
- 2005-06-05 21:11:37下载
- 积分:1
-
Convolution-code-coding
自编的实现类似conv卷积功能的源代码。可以帮助我们更加牢固掌握MATLAB卷积编程(The realization of self convolution function similar to the source code of conv. Can help us to more firmly grasp the MATLAB programming convolution)
- 2011-05-08 15:52:35下载
- 积分:1
-
fractal-use
分形的练习一
①Koch曲线
用复数的方法来迭代Koch曲线
clear i 防止i被重新赋值
A=[0 1] 初始A是连接(0,0)与(1,0)的线段
t=exp(i*pi/3)
n=2 n是迭代次数
for j=0:n
A=A/3 a=ones(1,2*4^j)
A=[A (t*A+a/3) (A/t+(1/2+sqrt(3)/6*i)*a) A+2/3*a]
end
plot(real(A),imag(A))
axis([0 1 -0.1 0.8])
②Sierpinski三角形
A=[0 1 0.5 0 0 1] 初始化A
n=3 迭代次数
for i=1:n
A=A/2 b=zeros(1,3^i) c=ones(1,3^i)/2
A=[A A+[c b] A+[c/2 c]]
end
for i=1:3^n
patch(A(1,3*i-2:3*i),A(2,3*i-2:3*i), b ) patch填充函数
end
(Fractal
Exercise One
The ① Koch curve
Plural iteration Koch curve
clear i to prevent i is reassigned
A = [0 1] initial A is a connection (0,0) and (1,0) of the segments
t = exp (i* pi/3)
n = 2 n is the number of iterations
for j = 0: n
A = A/3 a = ones (1,2* 4 ^ j)
A = [A (t* A+ a/3) (A/t+ (1/2+ sqrt (3)/6* i)* a) A+2/3* a]
end
plot (real (A), imag (A))
axis ([0 1-0.1 0.8])
② Sierpinski triangle
A = [0 1 0.5 0 0 1] initialized A
n = 3 the number of iterations.
for i = 1: n
A = A/2 b = zeros (1,3 ^ i) c = ones (1,3 ^ i)/2
A = [A A+ [c b] A+ [c/2 c]]
end
for i = 1:3 ^ n
patch (A (1,3* i-2: 3* i), A (2,3* i-2: 3* i), b ) patch filled function
end)
- 2013-03-02 10:03:09下载
- 积分:1