代码搜索:三维数组

找到约 10,000 项符合「三维数组」的源代码

代码结果 10,000
www.eeworm.com/read/106802/15621043

plg 函数传递数组的方法.plg

Build Log --------------------Configuration: 函数传递数组的方法 - Win32 Debug-------------------- Command Lines Creating temporary file "C:\DOCUME~1\YOY
www.eeworm.com/read/102679/15763074

txt 迷宫问题的数组解法.txt

#include #include #include #define N 20 int aa[N][N];/*递归用的数组*/ int yes=0;/*判断是否找到路线的函数*/ int x[100][2],n=0;/*x数组是显示路线用的,n是它的下标,也就是走了几次*/ void fun1(int (*aa)[N],i
www.eeworm.com/read/101253/15839292

c 数组递归退出2.c

#include void f2(); int a[13],k,j=1,b=13,n=0; main() { for(k=0;k
www.eeworm.com/read/100753/15865240

c 数组递归退出2.c

#include void f2(); int a[13],k,j=1,b=13,n=0; main() { for(k=0;k
www.eeworm.com/read/390596/8458379

txt try2.txt

捕获算术异常! finally i=0 a[1]/1=6 finally i=1 a[2]/2=3 finally i=2 a[3]/3=2 finally i=3 捕获数组下标越界异常! finally i=4 继续!
www.eeworm.com/read/365527/9858661

m exa2_13.m

a=[1 2 3;4 5 6 ;7 8 9]; b=[3 2 1;2 3 1; 1 2 3]; 3.^b %以3为底,以b中各个元素为指数求得的幂构成的数组 a.^3 %对a中的每个元素求立方 a.^b %以a中的元素为底,以b中相应元素为指数求得的幂构成的矩阵
www.eeworm.com/read/365527/9858727

m exa2_5.m

A=zeros(2,3) A(2,3,2)=2 %单元素创建(2×2×2)数组 B(2,3,1:2)=1:2 %子数组赋值创建(2×5×3)数组
www.eeworm.com/read/359240/10159987

m 例2-16.m

>> A=zeros(2,2) >> A(2,2,2)=1 %单元素创建(2×2×2)数组 >> B(2,5,:)=1:3 %子数组赋值创建(2×5×3)数组