搜索结果

找到约 10,000 项符合 云计算 的查询结果

按分类筛选

显示更多分类

软件 简单的计算器

// 学生管理.cpp : Defines the entry point for the application. // #include "stdafx.h" #include "resource.h" #define MAX_LOADSTRING 100 // Global Variables: HINSTANCE hInst; // current instance TCHAR szTitle[MAX_LOADSTRING]; // The title bar text TCHAR szWindowClass[MAX_LOADSTRING]; ...
https://www.eeworm.com/dl/513826.html
查看: 35

源码 简单的计算器

#include "student.h"
https://www.eeworm.com/dl/513827.html
下载: 2
查看: 85

技术资料 SIMD 并行计算资料

用于实行SIMD 算法的核心手册  在intel x 86 , powerpc , mips, arm 处理器上都有相关应用,用于处理向量,加速算法,图像图像处理,模式识别,数字信号处理等领域 
https://www.eeworm.com/dl/514403.html
下载: 1
查看: 42

技术资料 边缘计算参考架构1.0

边缘计算产业联盟发布的参考架构,帮助理解边缘计算的架构组成部分。
https://www.eeworm.com/dl/515402.html
下载: 2
查看: 109

源码 matlab 滑动相关计算程序

function [Rs,Ps]=move_corr(X,Y,a) %%%--- this function is for moving correlation %%%--- X,Y is the imput data, a is the length of the moving window %%%--- Rs is the spwarman correlation coeffcient, Ps is the p_vaue
https://www.eeworm.com/dl/516485.html
下载: 2
查看: 101

软件 磁芯仿真 计算 选型

磁芯仿真 计算 选型  磁芯仿真 计算 选型 磁芯仿真 计算 选型 磁芯仿真 计算 选型 磁芯仿真 计算 选型 
https://www.eeworm.com/dl/517496.html
下载: 4
查看: 116

手册 SDRAM相位角计算

SDRAM相位角计算,操作记录详细,适合新手入门。
https://www.eeworm.com/dl/518265.html
下载: 2
查看: 71

源码 matlab计算emd分解变量

利用matlab计算emd得到分解变量 lmf1、lmf2、lmf3
https://www.eeworm.com/dl/518315.html
下载: 1
查看: 67

书籍 用Python做科学计算

用Python做科学计算
https://www.eeworm.com/dl/518339.html
下载: 12
查看: 67

源码 表达式的计算

使用两个栈分别存放操作符和操作数,依次读取是操作数如操作数栈,是运算符入运算符栈,比较优先级,求值。 计算后缀:从左到右遍历后缀表达式,遇到操作数,放进栈,遇到操作符,栈顶两个数出栈,进行运算,运算结果放进栈,直到读完后缀表达式。 计算前缀:从左到右遍历前缀表达式,遇到操作符,放进栈,遇到操 ...
https://www.eeworm.com/dl/519685.html
下载: 1
查看: 41