代码搜索:remove
找到约 10,000 项符合「remove」的源代码
代码结果 10,000
www.eeworm.com/read/418304/10955560
m remove.m
function a = remove(a,idx,flag)
if ~a.n, return, end
if isempty(idx), return, end
switch flag
case 'zero'
ii = find(a.con(idx,4) == 0 & a.con(idx,5) == 0);
k = idx(ii);
case 'force'
k = idx;
www.eeworm.com/read/418304/10955675
m remove.m
function a = remove(a,k)
if ~a.n, return, end
if isempty(k), return, end
a.con(k,:) = [];
a.bus(k) = [];
a.pg(k) = [];
a.qg(k) = [];
a.dq(k) = [];
a.n = a.n - length(k);
a.qmax(k) = [];
a.qmin(k) =
www.eeworm.com/read/418304/10955782
m remove.m
function a = remove(a,idx)
if ~a.n, return, end
if isempty(idx), return, end
for i = 1:length(idx)
jdx = find(a.ty1 == idx(i));
if jdx
a.ty1(jdx) = [];
end
jdx = find(a.ty2 == idx(i));
www.eeworm.com/read/417996/10968961
gif remove.gif
www.eeworm.com/read/416714/11016857
cpp remove.cpp
#include "stlexam.h"
#pragma hdrstop
/**************************************************************************
*
* remove.cpp - Example program of remove algorithm.
* See Class
www.eeworm.com/read/246117/6965942
bmp remove.bmp
www.eeworm.com/read/465339/7053231
bat remove.bat
@echo off
cls
echo 〉〉〉〉〉〉〉〉〉〉〉〉〉〉〉〉〉〉〉〉〉〉〉〉〉
echo ◆Transceiver Remove Running...
echo ◆Remove Control Panel Application...
echo ◇Delete DPEngine.cpl From %SystemRoot%\system32\...
del %SystemRo
www.eeworm.com/read/445508/7136427
c remove.c
#include
#include
#include
#define uchar unsigned char
#define Bodrate 0xFF6A// FF6A相对于11.0592M晶振下2400波特率,
/*----------------------LCD函数----------------------*/
s
www.eeworm.com/read/219035/7147283
m remove.m
function out=remove(in, ind)
if ind == 1
out = in(2:end);
return
end
if ind == length(in)
out = in(1:end-1);
return
end
out = in([1:ind-1 ind+1:end]);
www.eeworm.com/read/461264/7230738
pro remove.pro
pro remove,index, v1, v2, v3, v4, v5, v6, v7
;+
; NAME:
; REMOVE
; PURPOSE:
; Contract a vector or up to 7 vectors by removing specified elements
; CALLING SEQUENCE:
; REMOVE, ind