代码搜索结果
找到约 10,000 项符合
Raspberry Pi 的代码
exa050501.m
%------------------------------------------------------------------------
% exa050501.m, for example 5.5.1 and fig5.5.1
% to explain the spectra factorization
%------------------------------------
exa060701_3.m
%-----------------------------------------------------------------------------
% exa060701_3.m , for example 6.7.1 and 6.5.1
% to test butter.m
%---------------------------------------------------
exa060701_2.m
%-----------------------------------------------------------------------------
% exa060701_2.m , for example 6.7.1 and 6.5.1
% to test buttord,lp2lp,bilinear ;
% to design Low-pass DF with s=2/Ts[(
exa100800_corrcoef.m
%------------------------------------------------------------------------
% exa100800_corrcoef.m,
% to test corrcoef.m ;
%------------------------------------------------------------------------
mdefir1.c
#include
#include
#include
#include "msp.h"
void mdefir1(int l,int iband,float fl,float fh,float fs,int iwindow,
float b[],float w[],int *ierror)
{
/*-------------
rad2deg.m
function[varargout]=rad2deg(varargin)
%RAD2DEG Converts radians to degrees.
%
% [D1,D2,...DN]=RAD2DEG(R1,R2,...RN) converts the input angles from
% radians to degrees. Output angles are in the r
missileguidancesimudemo01.m
%function [ output_args ] = MissileGuidanceSimuDemo01( input_args )
%%
%% 导弹追踪导引法的相对弹道簇图MATLAB仿真计算程序
%%
%% COPYRIGHT (C) vxLand , 2002-2008
%%
clc; clear; close all;
r0 = 1; p=2; r0x = r0 /3;
2002.c
/*
Problem Description
根据输入的半径值,计算球的体积。
Input
输入数据有多组,每组占一行,每行包括一个实数,表示球的半径。
Output
输出对应的球的体积,对于每组输入数据,输出一行,计算结果保留三位小数。
Sample Input
1
1.5
Sample Output
4.189
14.137
H
gamicheval.m
function [sol,val] = gaMichEval(sol,options)
val = 21.5 + sol(1) * sin(4*pi*sol(1)) + sol(2)*sin(20*pi*sol(2));
%G=zeros(0);
%val = sqrt(sol(1)) * sin(2*sol(1)) + sqrt(sol(1))*cos(5*sol(1))+5;
example6_2.m
t=0:pi/100:4*pi;
s=sin(t+3*pi/4);
plot(s);
title('原始信号s');
%====================================
%对s进行小波分解:db1 3层
[c,l]=wavedec(s,3,'db1');
%====================================
%提取小波分解的低频系数a