代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/231340/14238488
m testana.m
%
% simply supported Euler beam
global L A Gs E Iy rho
L=1; E=2.15e11; rho=7800; d=50e-3; nu=0.3;
r=d/2;
ind=1:5;
I=pi*d^4/64; EI=E*I;
A=pi*(r^2);
lam=(ind*pi).^2/L^2*sqrt(EI/rh
www.eeworm.com/read/231340/14238501
m testanax2.m
%
% simply supported Euler beam
global L A Gs E Iy rho nn
% use Genta page 87 eq. 2-40 to compute simply supported Timoshenko beam
% eigen frequencies
dw=[];
%
L=1; E=2.15e11; rho=7800; d=50e-3
www.eeworm.com/read/129432/14243088
cpp 劈因子法解方程.cpp
#include
#include
void piyinzi(int n,double *u,double *v,double *a){
double pi[100],m,x0,x1=a[1],x2=a[0],y0,y1,y2,z0,z1,du[100],dv[100];
for(int k=1;k
www.eeworm.com/read/230384/14291204
asv f_firwin.asv
function b = f_firwin (fun,m,fs,win,sym,p)
%F_FIRWIN: Design a linear-phase windowed FIR filter
%
% Usage: b = f_firwin (fun,m,fs,win,sym,p)
%
% Inputs: fun = string containing name of function
www.eeworm.com/read/230384/14291387
m f_firwin.m
function b = f_firwin (fun,m,fs,win,sym,p)
%F_FIRWIN: Design a general windowed FIR filter
%
% Usage: b = f_firwin (fun,m,fs,win,sym,p)
%
% Inputs:
% fun = string containing name of f
www.eeworm.com/read/230181/14302785
c ex17.c
#include /* special function register declarations */
/* for the intended 8051 derivative */
#include
www.eeworm.com/read/128256/14308363
cpp p1-14.cpp
#include
const double PI=3.1416; //声明常量(const变量)PI为3.1416
main()
{
//声明3个变量
double r=3,l,s;
//计算圆的周长
l=2*PI*r;
cout
www.eeworm.com/read/128256/14308429
cpp p1-4.cpp
##include //包含iostream.h头文件
void main()
{
//输出字符常量、变量和字符串
char c1='A';
cout
www.eeworm.com/read/229945/14310970
m hotqch.m
clear all
close all
a=0;b=1;m=10;T=0.5;N=1000;af=1;
f=inline('sin(pi*x)','x');
h=(b-a)/m;
k=T/N;
lmd=af^2*k/h^2; %注意lmd一定要小于0.5,只有这样差分法才稳定
x=linspace(a,b,m+1);
u(1,1:N+1)=0;
u(m+1,1:N+1)=0;
www.eeworm.com/read/229945/14310993
m cn.m
close all;
clear all;
a=0;b=1;m=10;T=0.5;N=50;af=1;
f=inline('sin(pi*x)','x');
h=(b-a)/m;
k=T/N;
lmd=af^2*k/h^2;
x=linspace(a,b,m+1);
x=x(2:m+1);
u(m)=0;
for i=1:m-1
u(i)=f(i*h);
end