代码搜索:正演模拟

找到约 10,000 项符合「正演模拟」的源代码

代码结果 10,000
www.eeworm.com/read/429785/8788815

c 模拟串行口.c

#include #define uchar unsigned char #define uint unsigned int sbit Tx_Pin = P1^1; sbit Rx_Pin = P1^2; //定义接收、发送引脚 /******************************************* I/O口模拟232通讯程序 使
www.eeworm.com/read/382946/8988293

txt 模拟黑客帝国.txt

@echo off setlocal ENABLEDELAYEDEXPANSION for /1 %%i in (1,1,80) do ( set Down%%i=0 ) for /1 %%i in (0) do ( set line= for /1 %%j in (1,1,80) do ( set /a Down%%j-=1
www.eeworm.com/read/282899/9054716

c 内存可变分区模拟.c

#include #include #include typedef struct space //////采用链表结构,每一个结点对应一个分区 { long sta_addr; ////////////////////////////分区的首地址 long length; /////////////////
www.eeworm.com/read/380342/9152128

txt 股票运动路径模拟.txt

初始价格为20,预期无风险收益率为10%,波动率为30%, 到期时间为3个月,时间增量为3/20个月,模拟路径次数为5的情况。 股票价格模拟结果 ------------------------------------------------ 股票价格 随机抽样值 股票价值变化 20.0000 -1.4693 -0.9607 19.0393 0.6872 0.462
www.eeworm.com/read/380342/9152131

c 股票运动路径模拟.c

#include #include #include #include double frand() { return (double)rand()/(RAND_MAX); } // 配极法产生正态分布, 一次产生两个独立变量 double normal() { doub