码迷,mamicode.com
首页 >  
搜索关键字:union all    ( 25526个结果
eclipse中的Quick Type Hierarchy快速类型层次结构
For example, if an interface is selected when you invoke the Quick Type Hierarchy, the list displays all the known classes that implement the interfac ...
分类:系统相关   时间:2021-06-30 17:33:09    阅读次数:0
mac git拉取失败 Failed to connect to 127.0.0.1 port 1087: Connection refused
解决方法: 1. 查看端口是否被占用:lsof -i:1087 若没有返回则没有占用。 2. 查看代理:env|grep -i proxy 返回结果: 结论:使用代理导致访问失败 3. 解决方法:直接输入export ALL_PROXY="" ...
分类:系统相关   时间:2021-06-29 15:32:50    阅读次数:0
【车牌识别】基于matlab车辆出入库计时系统【含Matlab源码 469期】
一、简介 基于matlab车辆出入库计时系统 二、源代码 % 出停车场 clc; clear all; [filename,filepath]=uigetfile('.jpg','输入一个需要识别的车牌图像');% 直接自动读入% fil=strcat(filepath,filename); %st ...
分类:其他好文   时间:2021-06-28 20:59:56    阅读次数:0
【游戏】基于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
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
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
25526条   上一页 1 2 3 4 ... 2553 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!