代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/445078/7599696
m powerdist.m
function x = PowerDist(x0,beta,n)
x = zeros(n,1);
for i=1:n
r = MixMOD(x0,2,1);
k = 0;
while r(2) == 0
k = k + 1;
r(2) = power(2,k);
r = MixMOD(r(2),2,1);
www.eeworm.com/read/444975/7602119
asv bifurcation2dmap.asv
%这个小程序虽然很简单,但可以求非线性动力学或者复杂经济学中经常遇到的类似问题。
%也可以求更高维数的离散系统的bifurcation diagram. 可以根据研究需要,选择分岔图中点的颜色和大小。
clear;
clf;
r=linspace(0,0.5,4000);
t=200;
j=1;
while j
www.eeworm.com/read/444804/7605674
c cs9-5.c
#include
#define uchar unsigned char
#define uint unsigned int
//====================
void delay(uint k)
{
uint i,j;
for(i=0;i
www.eeworm.com/read/444804/7606014
c cs13-3.c
#include
#define uchar unsigned char
#define uint unsigned int
sbit KEY_S1=P3^2;
uchar code SEG7[10]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f};
uchar code ACT[5]={0x
www.eeworm.com/read/444804/7606197
c cs6-2.c
#include
/*===================================*/
void delay(unsigned int k)
{
unsigned int i,j;
for(i=0;i
www.eeworm.com/read/444804/7606215
c cs6-1.c
#include
unsigned char dis0=0x66;
unsigned char dis1=0x4f;
unsigned char dis2=0x5b;
unsigned char dis3=0x06;
void delay(void)
{
unsigned int i,j;
for(i=0;i
www.eeworm.com/read/444804/7606379
c cs14-1.c
#include
#define uchar unsigned char
#define uint unsigned int
/****************************************************************/
void delay(uint k)
{
uint i,j;
fo
www.eeworm.com/read/444781/7607229
c caijiduan.c
#include
#define uchar unsigned char
uchar code dis_7[11]={0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90,0xff};
uchar code scan_con[4]={0xfe,0xfd,0xfb,0xf7};
short
www.eeworm.com/read/444759/7607405
m instfreq.m
function [fnormhat,t]=instfreq(x,t,L,trace);
%INSTFREQ Instantaneous frequency estimation.
% [FNORMHAT,T]=INSTFREQ(X,T,L,TRACE) computes the instantaneous
% frequency of the analytic signal X at time
www.eeworm.com/read/444457/7612520
cpp goto.cpp
#include
#include "AdjacencyWDigraph.h"//加权有向邻接矩阵
#include
void main()
{
char ans;
do{
system("cls");
cout