代码搜索:Without
找到约 10,000 项符合「Without」的源代码
代码结果 10,000
www.eeworm.com/read/182135/9215050
png without-alpha.png
www.eeworm.com/read/422489/10634299
m hw_without.m
%% HW of neural network
randn('state',0);
s=randn(250,8)*(1.5^0.5); %% Distribute the 1000 point in the coordinate system.
class4=[3+s(:,1),3+s(:,2)];
class3=[3+s(:,3),(-3)+s(:,4)];
class2=[
www.eeworm.com/read/120487/6073451
out without_oid.out
--
-- WITHOUT OID
--
CREATE TABLE wi (i INT);
CREATE TABLE wo (i INT) WITHOUT OIDS;
INSERT INTO wi VALUES (1); -- 1
INSERT INTO wo SELECT i FROM wi; -- 1
INSERT INTO wo SELECT i+1 FROM wi; -- 1+1=2
www.eeworm.com/read/120487/6073617
sql without_oid.sql
--
-- WITHOUT OID
--
CREATE TABLE wi (i INT);
CREATE TABLE wo (i INT) WITHOUT OIDS;
INSERT INTO wi VALUES (1); -- 1
INSERT INTO wo SELECT i FROM wi; -- 1
INSERT INTO wo SELECT i+1 FROM wi; -- 1+1=
www.eeworm.com/read/183001/5260254
out without_oid.out
--
-- WITHOUT OID
--
--
-- This test tries to verify that WITHOUT OIDS actually saves space.
-- On machines where MAXALIGN is 8, WITHOUT OIDS may or may not save any
-- space, depending on the size of
www.eeworm.com/read/183001/5260425
sql without_oid.sql
--
-- WITHOUT OID
--
--
-- This test tries to verify that WITHOUT OIDS actually saves space.
-- On machines where MAXALIGN is 8, WITHOUT OIDS may or may not save any
-- space, depending on the size o
www.eeworm.com/read/316872/3604205
txt booting-without-of.txt
Booting the Linux/ppc kernel without Open Firmware
--------------------------------------------------
(c) 2005 Benjamin Herrenschmidt ,
IBM Corp
www.eeworm.com/read/376006/2718017
out without_oid.out
--
-- WITHOUT OID
--
--
-- This test tries to verify that WITHOUT OIDS actually saves space.
-- On machines where MAXALIGN is 8, WITHOUT OIDS may or may not save any
-- space, depending on the size of
www.eeworm.com/read/376006/2718209
sql without_oid.sql
--
-- WITHOUT OID
--
--
-- This test tries to verify that WITHOUT OIDS actually saves space.
-- On machines where MAXALIGN is 8, WITHOUT OIDS may or may not save any
-- space, depending on the size o
www.eeworm.com/read/474831/6808446
m without_dc.m
%Fuzzy Controller
clear all;close all;
%**************************模糊控制单元*********************************%
a=newfis('fuzz_ls');
f1=1.0;
a=addvar(a,'input','e',[-3*f1,3*f1]);