代码搜索:盒维数
找到约 10,000 项符合「盒维数」的源代码
代码结果 10,000
www.eeworm.com/read/365918/2894421
txt 维勒斯.txt
1.1
declare
type nametable is table of dept.dname%type index by binary_integer;
nam nametable;
i int;
cursor dptname
is
select dept.dname from dept;
begin
open dptname;
loop
i := 0
www.eeworm.com/read/365918/2894437
txt 维勒斯.txt
1、建表
学生 create table stu_choose (id int,name varchar2(10),sex varchar2(2),age integer,lid integer,score number(3,1));
老师 create table lesson (id int,name varchar2(10),credit number(1,1));
2、添加约
www.eeworm.com/read/365918/2894453
txt 维勒斯.txt
1.
create or replace function intsum(n int)
return int
as
amount int;
overlarge exception;
begin
if(n>0) then
amount := 0;
for i in 1..n loop
amount := amount + i;
end loop;
www.eeworm.com/read/365918/2894480
txt 维勒斯.txt
1.
创建商品表
create table merchandise (id int,name varchar2(10),sort varchar2(10),price number(5,2));
创建种类表
create table class (id int primary key,sort varchar2(10));
对种类表设置非空和唯一性
alter table c
www.eeworm.com/read/171830/9734062
dwg 3维实体.dwg
www.eeworm.com/read/136685/13366192
m exm02113_5.m
A=reshape(1:18,2,3,3) %创建3维数组
A(:,2:3,:)=[] %赋“空”,使原A数组的第二、三列消失。
B=A;
size(A)
A_1=squeeze(A) %撤消“孤维”,数组由3维降为2维。
size(B) %B数组与A同样存在“孤维”
B(:,1,:)=[] %对“孤维”赋“空”,不能降维!
www.eeworm.com/read/319335/13453601
m exm02113_5.m
A=reshape(1:18,2,3,3) %创建3维数组
A(:,2:3,:)=[] %赋“空”,使原A数组的第二、三列消失。
B=A;
size(A)
A_1=squeeze(A) %撤消“孤维”,数组由3维降为2维。
size(B) %B数组与A同样存在“孤维”
B(:,1,:)=[] %对“孤维”赋“空”,不能降维!
www.eeworm.com/read/339239/12247159
m exm02113_5.m
A=reshape(1:18,2,3,3) %创建3维数组
A(:,2:3,:)=[] %赋“空”,使原A数组的第二、三列消失。
B=A;
size(A)
A_1=squeeze(A) %撤消“孤维”,数组由3维降为2维。
size(B) %B数组与A同样存在“孤维”
B(:,1,:)=[] %对“孤维”赋“空”,不能降维!
www.eeworm.com/read/129636/14234669
m exm02113_5.m
A=reshape(1:18,2,3,3) %创建3维数组
A(:,2:3,:)=[] %赋“空”,使原A数组的第二、三列消失。
B=A;
size(A)
A_1=squeeze(A) %撤消“孤维”,数组由3维降为2维。
size(B) %B数组与A同样存在“孤维”
B(:,1,:)=[] %对“孤维”赋“空”,不能降维!
www.eeworm.com/read/212376/15157091
m exm02113_5.m
A=reshape(1:18,2,3,3) %创建3维数组
A(:,2:3,:)=[] %赋“空”,使原A数组的第二、三列消失。
B=A;
size(A)
A_1=squeeze(A) %撤消“孤维”,数组由3维降为2维。
size(B) %B数组与A同样存在“孤维”
B(:,1,:)=[] %对“孤维”赋“空”,不能降维!