码迷,mamicode.com
首页 >  
搜索关键字:insert all    ( 36718个结果
【游戏】基于matlab国际象棋【含Matlab源码 498期】
一、简介 基于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波数谱计算【含Matlab源码 508期】
一、简介 基于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基音周期估计【含Matlab源码 551期】
一、简介 基于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编解码【含Matlab源码 555期】
一、简介 基于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
快递E栈——网络编程
快递实体类: 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
Oracle 从 dual 表中查询返回多行记录
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
How to Enable VNCR on RAC Database to Register only Local Instances (Doc ID 1914282.1)
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
JavaWeb5.5【JDBC:案例2】
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
Leetcode No.27 Remove Element(c++实现)
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
36718条   上一页 1 2 3 4 5 ... 3672 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!