上一节讲的三叶结,举一反三,由三可到无穷,这一节讲N叶结再次看下三叶结的公式:x = sin(t) + 2*sin(2*t)y = cos(t) - 2*cos(2*t)将其改为:x = sin(t) + 2*sin((n-1)*t)y = cos(t) - 2*cos((n-1)*t)就变成了N叶...
分类:
其他好文 时间:
2014-07-14 09:47:28
阅读次数:
358
前面讲了N叶结,当N值越大时,你会发现整个图形越像一个圆环.这一节就讲其他几种绕在圆环上的曲线.vertices = 12000t = from 0 to (64*PI)p = rand_int2(2, 32)q = rand_int2(2, 32)r = 2 + cos(q/p*t)x = r*s...
分类:
其他好文 时间:
2014-07-14 09:17:37
阅读次数:
315
这是我刚写完这个软件时,自己写的一个测试用例.vertices = 3600w = from 0 to 32a = mod(w, 1) * 2 * PIb = from 0 to PIr = 10.0x = r*sin(a)*sin(b)y = r*cos(a)*sin(b)z = r*cos(b)
分类:
其他好文 时间:
2014-07-14 08:29:27
阅读次数:
145
两角和与差cos(α+β)=cosα·cosβ-sinα·sinβcos(α-β)=cosα·cosβ+sinα·sinβsin(α±β)=sinα·cosβ±cosα·sinβtan(α+β)=(tanα+tanβ)/(1-tanα·tanβ)tan(α-β)=(tanα-tanβ)/(1+tan...
分类:
其他好文 时间:
2014-07-14 00:48:15
阅读次数:
277
不记得在哪搞了个数学公式生成的图形.vertices = 1000t = from 0 to (2*PI)r = 2.0x = r*(5*cos(t) - cos(6*t))y = r*(3*sin(t) - sin(4*t))给线加上一维变量的变化,使之变成面:vertices = D1:360 ...
分类:
其他好文 时间:
2014-07-12 14:31:10
阅读次数:
214
下面的matlab程序分别使用周期图法、相关函数法以及AR谱方法计算信号的功率谱。% power spectrum estimated
clear all;
clc;
close all;
Fs=1000; % 采样频率
nfft = 1024; % fft计算点数
%产生含有噪声的序列
n=0:1/Fs:1;
xn=cos(2*pi*100*n)+3*cos(2*pi*200...
分类:
其他好文 时间:
2014-07-08 16:23:01
阅读次数:
277
Math.abs()计算绝对值。Math.acos()计算反余弦值。Math.asin()计算反正弦值。Math.atan()计算反正切值。Math.atan2()计算从x坐标轴到点的角度。Math.ceil()将数字向上舍入为最接近的整数。Math.cos()计算余弦值。Math.exp()计算指...
分类:
其他好文 时间:
2014-07-06 19:33:58
阅读次数:
169
设 $f\in C(-\infty,+\infty)$, 定义 $\dps{F(x)=\int_a^b f(x+t)\cos t\rd t}$, $a\leq x\leq b$. (1) 证明: $F$ 在 $[a,b]$ 上可导; (2) 计算 $F'(x)$. 解答: 由 $$\bex F(x)...
分类:
其他好文 时间:
2014-06-28 13:17:35
阅读次数:
163
证明: 当 $m0}\\ &=\lim_{x\to0^+}\cfrac{\sex{\xi_x\cos\cfrac{1}{\xi_x}}\cdot x}{x^m}\\ &=0. \eea \eeex$$
分类:
其他好文 时间:
2014-06-28 13:11:28
阅读次数:
157
Matlab代码:closeall;alpha=-pi:pi/50:pi;x=2*cos(alpha);y=2*sin(alpha);forp=1:length(x)alpha1=-pi:pi/100:pi;x1=1*cos(alpha1);y1=1*sin(alpha1);holdon;plot(x(1,p)+x1,y(1,p)+y1-1,‘g‘);endaxisoff;holdon;theta=-pi:pi/50:pi;rho=2*(1-sin(theta));polar(theta,rho,‘*r..
分类:
其他好文 时间:
2014-06-28 00:24:12
阅读次数:
381