代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/308602/13699064
m e0603.m
x=0:pi/100:2*pi;y1=2*sin(2*x);y2=3*sin(3*x);
plot(x,y1,x,y2)%在同一个坐标系分别绘制二维图形
title('This is figure of the third example. '); %给图形加上标题
xlabel('x'); %给x轴加标注
ylabel('y');
legend('2*sin(2*x)' ,'3*
www.eeworm.com/read/308329/13703977
m stdphase.m
% 输出标准相位分布时,nPSK的瞬时相位的各阶矩特性;
disp('2PSK:');
stdPhase = [-pi/2 pi/2];
for i = 1 : 6
stdMean(i) = mean(stdPhase.^i);
end
disp(stdMean);
disp('4PSK:');
stdPhase = [-pi*3/4 -pi/4 pi/4 pi*3/4
www.eeworm.com/read/308329/13703981
m modest.m
clear all;
close all;
clc;
fc=2000; %载波频率
fs=60000; %采样速率
ts=1/fs; %采样周期
t0=5.5; %信号长度
t=[0:ts:t0];
fd=125;
www.eeworm.com/read/308329/13703983
m standardparam.m
% 输出标准相位分布时,nPSK的瞬时相位的各阶矩特性;
clear all;
clc;
disp('2PSK:');
stdPhase = [-pi/2 pi/2];
for i = 1 : 6
stdMean(i) = mean(stdPhase.^i);
end
disp(stdMean);
disp('4PSK:');
stdPhase = [-pi*3
www.eeworm.com/read/308322/13704015
txt matlab.txt
clear all;
close all;
fc = 2000; %载波频率
fs = 40000; %采样速率
k=2;
code_size=15*round(k*fs/fc); % 信息码元长度
t0=5.5; %信号长度
%code_length=16O; %码元个数
Ns=256; %采样点个数
fd = 125; %符号速率
ts=1/f
www.eeworm.com/read/308157/13707214
c 矩阵转换.c
void trans(int *p,int n)
{
int i,j,temp;
int *pi,*pj;
for(i=0;i
www.eeworm.com/read/307594/13719752
m f.m
function [s]=f(db)
%global x y z yd a b c
x=1;y=10;z=0;yd=sqrt(x^2+y^2+z^2);a=pi/2;b=pi/2;c=0;
s=(((y/yd)-cos(a)*cos(b+db)*(z/yd)/(sin(b+db)))^2)-((sin(a))^2)*(1-((z/yd)^2)/(sin((b+db))^2));
www.eeworm.com/read/306970/13734258
s fdct_bfin.s
/*
* fdct BlackFin
*
* Copyright (C) 2007 Marc Hoffman
*
* This file is part of FFmpeg.
*
* FFmpeg is free software; you can redistribute it and/or
* modify it under
www.eeworm.com/read/306880/13736716
m amgen.m
%分别测试SNR从0到10时的系统性能
%初始化
N=32; %信息序列个数
Fs=4; %采样频率
Fc=1; %载波频率
SNR=-5; %信噪比
%产生0、1随机序列
source=randsrc(1,N,[0,1;.5,.5]);
%产生psk调制信号
for i=1:N
for j=1:Fs
%modsrc((i-1)*Fs+j)=cos(2*p
www.eeworm.com/read/306728/13739279
m ex2_1.m
x=1+2i;
y=3-sqrt(17);
z=(cos(abs(x+y))-sin(78*pi/180))/(x+abs(y))