自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(16)
  • 资源 (8)
  • 收藏
  • 关注

原创 写作系列之:摘要

这几篇博客汇总了几篇典型文章的摘要,可以从中总结一下摘要的写作规律摘要汇总:1In this paper, we study the resource allocation problem for a single-cell non-orthogonal multiple access (NOMA) relay network where an OFDM amplify-and-forward (AF) relay allocates the spectrum and power resources

2020-08-28 13:08:07 455

原创 Radio Resource Allocation for Non-orthogonal Multiple Access (NOMA) Relay Network

Radio Resource Allocation for Non-orthogonal Multiple Access (NOMA) Relay Network Using Matching Game创新:Although there are several works studying the resource allocation problem in the NOMA scheme, the majority of them focused on the multiple access syst

2020-08-26 18:57:27 362

原创 MATLAB创建简单的类

搬运自https://ww2.mathworks.cn/help/matlab/matlab_oop/create-a-simple-class.html创建简单类设计类类的基本目的是定义封装数据的对象以及对该数据执行的操作。例如,BasicClass 定义一个属性和对该属性中的数据执行操作的两个方法:Value - 此属性包含存储在类对象中的数值数据roundOff - 此方法将属性值舍入到两位小数multiplyBy - 此方法将属性值乘以指定数值以下是 BasicClass 的定义:

2020-08-07 12:15:15 911

原创 numpy 数组元素的拼接(append)

接上一期博客numpy 矩阵元素的拼接(concatenate)numpy.append(arr, values, axis=None)官方文档示例Examples>>>np.append([1, 2, 3], [[4, 5, 6], [7, 8, 9]])array([1, 2, 3, ..., 7, 8, 9])When axis is specified, values must have the correct shape.>>>np.appe

2020-08-06 13:44:27 2317

原创 numpy求模/绝对值函数absolute

numpy中absolute函数的用法

2020-08-06 13:16:23 19668

原创 pandas中文文档下载

这里写自定义目录标题pandas中文文档下载链接: https://pan.baidu.com/s/1r3h0EWxgnWDszNXB7laaaA 提取码: c2cc

2020-08-06 10:48:27 942

原创 电子科技大学现代电子信息系统综合实验课程EDA频率计

接上一篇博客https://blog.csdn.net/Jinyindao243052/article/details/107821839文章目录(1)系统功能及指标(2)系统设计方案及基本流程1.分频器2.控制模块3.计数器4.锁存器5.档位选择模块6.数码管扫描模块(3)总体原理框图代码control模块counter_10模块f_div模块latch模块scan_led模块sele模块(1)系统功能及指标测量范围:20Hz~41MHz(以上)测量精度:1%以内(2)系统设计方案及基本流程

2020-08-05 23:53:24 2309 2

原创 电子科技大学现代电子信息系统综合实验课程部分模拟试题

【考试一,只有0】EDA:拨码A,亮/灭最左两位LED (5分), 拨码B起/停最右两位LED闪烁(频率2Hz)(5分);仿真拨码B支路的电路功能(5分);基于前功能在右LED亮时,数码管只最左1位显示该led闪烁次数(5分);MCU:按键A,亮/灭左LED(5分), 按键B起/停最右LED闪烁(频率2Hz)(5分);选最左第2位数码管,在两LED同时灭时才显示“0”(5分);继续按键时,数码管左循环一位显示该"0"(5分)【考试二,AAA,88循环加一】EDAE盘带AAA 指定目录建立项目(

2020-08-05 23:36:24 4082 1

原创 电子科技大学现代电子信息系统综合实验课程单片机练习题代码

接上一篇博客https://blog.csdn.net/Jinyindao243052/article/details/107822771除了实现练习题的功能,我自己还写了一些函数,实践证明在考试中用得到! #include <reg51.h>#include <absacc.h>#include <ctype.h>sbit led0=P0^0;sbit led1=P0^1;sbit led2=P0^2;sbit led3=P0

2020-08-05 23:22:53 2579

原创 电子科技大学现代电子信息系统综合实验课程设计代码(单片机+频率计)2

接上一篇博客:https://blog.csdn.net/Jinyindao243052/article/details/107821839这是另外一种思路:有两种测频模式,一个高频模式,一个低频模式单片机中断方案代码#include <reg51.h>#include <absacc.h>#include <ctype.h>sbit KEY2 = P2^0; //按键1 high modesbit KEY3 = P2^1; //按键2 low m

2020-08-05 19:41:25 2260

原创 电子科技大学现代电子信息系统综合实验课程设计代码(单片机+频率计)1

单片机实现数字频率计系统功能及指标测量频率范围:10Hz~600kHz测量精度:1%以内系统设计方案及基本流程unsigned char DispBuf[8];显示缓冲区,分别对应8个数码管每个数码管应该显示的数字主要函数及其功能概述:void delay(unsigned int t)t: 延时长度(ms)延时函数,t 可以对 delay 函数的运行时间进行设置,delay 函数本身不进行任何有意义的操作,只实现空转等待的功能void DispClear()清空显示缓冲区DispB

2020-08-05 18:58:45 7318 3

原创 python数据处理入门pandas教程

蚂蚁学python: Python数据分析从入门到实战

2020-08-05 10:27:12 141

原创 MATLAB元胞数组cell用法简介

matlab元胞数组入门简介

2020-08-04 11:51:11 628

原创 Scipy优化scipy.optimize.minimize

scipy,optimize.minimize

2020-08-03 23:56:40 4506

原创 numpy中元素的重复numpy.repeat

numpy.repeat(a, repeats, axis=None)[source]官方文档a:输入矩阵repeats:元素重复的次数axis:在哪个axis上重复,如把每一行重复若干次就置axis=0,把每一列重复若干次就置axis=1示例>>> np.repeat(3, 4)array([3, 3, 3, 3])>>> x = np.array([[1,2],[3,4]])>>> np.repeat(x, 2)array([1,

2020-08-01 14:07:56 2983

原创 sklearn分类算法SGDclassifier

未完待续,SGD的数学细节给定一系列训练数据:(x1,y1),…,(xn,yn)(x_1, y_1), \ldots, (x_n, y_n)(x1​,y1​),…,(xn​,yn​) 其中 xi∈Rmx_i \in \mathbf{R}^mxi​∈Rm 是点的坐标, yi∈Ry_i \in \mathcal{R}yi​∈R (yi∈{−1,1}y_i \in\{-1, 1\}yi​∈{−1,1} )是分类标签。我们的目标是训练出一个线性评价函数 f(x)=wTx+bf(x) = w^T x + bf

2020-08-01 11:59:33 4090

电子技术实验mooc答案

MOOC电子技术应用实验1(数字电路基础实验)2018秋 本人希望下载者能合理使用答案,经过自己的思考后再校对,帮助复习,提高分数。

2019-05-25

电子科技大学基础工程训练机电一体化实训设计

plc编程那个模块,2018年亲测可用,如果做不出来希望能帮到你。

2019-05-25

微波技术与天线部分习题解答

微波技术与天线部分重点习题答案 主编:杨德强 陈波 王园 2016年12月第1版 本人希望下载者能合理使用本书习题答案,在自己思考过后再来校对。

2019-05-25

成都电子科技大学数字信号处理资料

本资源经过精心整理,包含参考资料和可供参考的国外优秀教材,课程PPT,课本电子版,MATLAB设计实例参考,习题答案等,内容详尽。

2019-02-24

成都电子科技大学计算机系统原理资料

本资源是经过精心整理和总结的全套学习资料,旨在帮助同样学习本课程的学生。不包含往年试题。

2019-02-24

Linear Algebra Pure & Applied

国外原版线性代数教材 作者:Edgar G Goodaire This is a matrix-oriented approach to linear algebra that covers the traditional material of the courses generally known as “Linear Algebra I” and “Linear Algebra II” throughout North America, but it also includes more advanced topics such as the pseudoinverse and the singular value decomposition that make it appropriate for a more advanced course as well. As is becoming increasingly the norm, the book begins with the geometry of Euclidean 3-space so that important concepts like linear combination, linear independence and span can be introduced early and in a “real” context. The book reflects the author's background as a pure mathematician — all the major definitions and theorems of basic linear algebra are covered rigorously — but the restriction of vector spaces to Euclidean n-space and linear transformations to matrices, for the most part, and the continual emphasis on the system Ax=b, make the book less abstract and more attractive to the students of today than some others. As the subtitle suggests, however, applications play an important role too. Coding theory and least squares are recurring themes. Other applications include electric circuits, Markov chains, quadratic forms and conic sections, facial recognition and computer graphics.

2018-12-03

随机信号分析

哈工大出版社 高等学校十二五规划教材 扫描版本 教材。

2018-11-26

Vector Calculus

Vector Calculus Michael Corral Page:222 This book covers calculus in two and three variables. It is suitable for a one-semester course, normally known as “Vector Calculus”, “Multivariable Calculus”, or simply “Calculus III”. The prerequisites are the standard courses in single-variable calculus (a.k.a. Calculus I and II).

2018-11-25

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除