一、简介 基于matlab国际象棋 二、源代码 function mychess() %clear %close all global Grid_n Grid_w Grid_h Board BoardWhite chess_x chess_y Whowin Grid_n=8; Grid_w=60; ...
分类:
其他好文 时间:
2021-06-28 20:56:37
阅读次数:
0
一、简介 基于matlab波数谱计算 二、源代码 clear figure load tide36part16RSPO %load tide36all load all_atm_pres.mat a=mean(atmp'); pa=(a-mean(a))'/100; t=[166.5:0.5:901 ...
分类:
其他好文 时间:
2021-06-28 20:34:37
阅读次数:
0
一、简介 基于matlab基音周期估计 二、源代码 % 基音周期检测的端点检测算法 clc; close all; clear all; wlen=320; inc=80; % 分帧的帧长和帧移 T1=0.05; % 设置基音端点检测的参数 [x,fs]=wavread('C4_2_y.wav'); ...
分类:
其他好文 时间:
2021-06-28 20:15:09
阅读次数:
0
一、简介 基于matlab PCM编解码 二、源代码 clear all; close all; [x,fs]= audioread('C6_1_y.wav'); v=1; xx=x/v; sxx=floor(xx*4096); y=pcm_encode(sxx); yy=pcm_decode(y, ...
分类:
其他好文 时间:
2021-06-28 20:09:42
阅读次数:
0
快递实体类: 1 package bean; 2 3 import java.io.Serializable; 4 5 /** 6 * 快递类 7 * 8 * @author Administrator 9 */ 10 public class Express implements Serializ ...
分类:
其他好文 时间:
2021-06-28 19:58:28
阅读次数:
0
1.原理: 2.代码实现: 1 /* 2 * insert:实现插入排序 3 * ary[ARRAY] 需要排序的数组 4 * @return 5 * [ARRAY] 排序后的新数组 6 * by js0205 7 */ 8 function insert(ary) { 9 let handle = ...
分类:
编程语言 时间:
2021-06-28 19:14:34
阅读次数:
0
select 1 as id,'是' as text from dual union all select 0 as id ,'否' as text from dual 同时查询出十条数据 select * from dual connect by 0 + level <= 10; 按照这个特性计算 ...
分类:
数据库 时间:
2021-06-28 18:48:46
阅读次数:
0
VNCR is supported for the cluster. Use MOS note 1914282.1 to ensure you've done all the required steps How to Enable VNCR on RAC Database to Register ...
分类:
数据库 时间:
2021-06-28 17:54:34
阅读次数:
0
CREATE TABLE USER ( id INT PRIMARY KEY AUTO_INCREMENT, username VARCHAR (32), password VARCHAR (32) ); INSERT INTO USER VALUES(NULL, 'zhangsan', '123' ...
分类:
数据库 时间:
2021-06-28 17:39:43
阅读次数:
0
1. 题目 1.1 英文题目 Given an integer array nums and an integer val, remove all occurrences of val in nums in-place. The relative order of the elements may ...
分类:
编程语言 时间:
2021-06-25 17:23:46
阅读次数:
0