摘要: MATLAB 一、非均匀数据等间隔坐标 比如:{1/3000,1 /2500,1/1000,1/500,1/300,1/100,1/10,1} ind=1:Lamda_length; plot(ind,PS,' '); set(gca,'XTick',ind); set(gca,'XTickLabe 阅读全文
posted @ 2019-04-03 21:30 CGJ_Coco 阅读(121) 评论(0) 推荐(0) 编辑
摘要: NB重要网址 NB标准: "http://www.3gpp.org/specifications/79 specification numbering" NB提案: "http://www.3gpp.org/3gpp calendar" "http://www.3gpp.org/DynaReport 阅读全文
posted @ 2018-12-12 21:38 CGJ_Coco 阅读(182) 评论(0) 推荐(0) 编辑
摘要: EndNote x9操作大全 1.官网下载软件 "https://endnote.com/downloads/" 2.破解 "链接:https://pan.baidu.com/s/1DzVYQ0awNPgH0zJywuklBA " 提取码:amti 3.中文文献不成功 "链接:https://pan 阅读全文
posted @ 2018-11-28 20:34 CGJ_Coco 阅读(1806) 评论(1) 推荐(0) 编辑
摘要: FPGA设计流程 阅读全文
posted @ 2018-11-20 16:53 CGJ_Coco 阅读(91) 评论(0) 推荐(0) 编辑
摘要: ipconfig/release ipconfig/renew 1 有用 2 第一次实验,没用 阅读全文
posted @ 2018-11-14 09:09 CGJ_Coco 阅读(89) 评论(0) 推荐(0) 编辑
摘要: JAVA FPGA(未完待续。。。) 前辈们的面试心得看完,果断转FPGA。(Java啥都答不上来,数字IC还能答出部分) 搜罗前辈们的经验,决定先从Quartus开始吧。 "https://blog.csdn.net/qq_18649781/article/details/81025650" 这个 阅读全文
posted @ 2018-10-26 15:39 CGJ_Coco 阅读(215) 评论(0) 推荐(0) 编辑
摘要: JAVA FPGA(未完待续。。。) 前辈们的面试心得看完,果断转FPGA。(Java啥都答不上来,数字IC还能答出部分) 搜罗前辈们的经验,决定先从Quartus开始吧。 "https://blog.csdn.net/qq_18649781/article/details/81025650" 阅读全文
posted @ 2018-10-25 19:28 CGJ_Coco 阅读(373) 评论(0) 推荐(0) 编辑
摘要: JAVA学习 网络编程 一、InetAddress:多个静态方法 1.getLocalHost:本机 2.getByName:根据域名DNS|IP地址 IP 两个成员方法 1.getHostAddress:返回地址 2.getHostName:返回计算机名 二、端口: 1.区分软件 2.2个字节 0 阅读全文
posted @ 2018-10-24 15:58 CGJ_Coco 阅读(120) 评论(0) 推荐(0) 编辑
摘要: JAVA学习 多线程 一.创建线程方式 1.方式一 (1)创建:继承Thread+重写run(extends) StartThread st=new StartThread(); (2)启动:创建子类对象+启动 st.start();//开启线程,交给CPU去调用,不保证立即运行 2.方式二 (1) 阅读全文
posted @ 2018-10-17 10:56 CGJ_Coco 阅读(89) 评论(0) 推荐(0) 编辑
摘要: JAVA学习 IO数据流 一.输入 1.创建源 File src=new File("test.txt"); 2.选择流 InputStream is=null; try { is=new FileInputStream(src); 3.操作(读取) 未分段: int temp; while((te 阅读全文
posted @ 2018-09-29 16:31 CGJ_Coco 阅读(107) 评论(0) 推荐(0) 编辑