- 博客(3)
- 收藏
- 关注
原创 用matlab自己编写代码实现基2—FFT
function [xk] = my_fft(x,n)longx=length(x);if n==0 xk=x(1)*exp(-2*1j*pi*0*0);else x1=[]; for i=1:longx/2 x1=[x1,x(2*i-1)]; end% 提取离散序列下标为 0 2 4 6...的值,构成偶序列 x2=[]; for i=1:longx/2 x2=[x2,x(2*i)]; end x1k=my_fft(x1,.
2022-04-21 17:41:39
4124
5
原创 遥感图像分类--实验五:线性判别函数与感知器算法
主程序:%% 读入数据photo=imread("airplane.tif");figure(1);subplot(2,3,1),imshow(photo);%% 产生训练集yb1=photo(10:17,210:217,:);yb2=photo(20:27,50:57,:);yb3=photo(129:136,120:127,:);%yb4=photo(170:177,180:187,:);subplot(2,3,2),imshow(yb1);subplot(2,3,3),ims
2022-04-16 14:29:44
838
原创 遥感图像分类--实验六:集成学习与分类性能评价
主程序:%% 读入数据photo=imread("airplane.tif");figure(1);subplot(2,3,1),imshow(photo);%% 产生初始训练集ob1=photo(10:17,210:217,:);ob2=photo(20:27,50:57,:);ob3=photo(129:136,120:127,:);subplot(2,3,2),imshow(ob1),title("样本集1");subplot(2,3,3),imshow(ob2),titl
2022-04-16 14:00:31
1580
2
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人