Loading...
Stack(栈)是一种线性的数据结构,因此它既可以用数组实现,也可以用链表实现。栈的特征是只允许在一端进行插入或删除操作。栈的基本操作1) void InitStack(Stack* s):初始化空栈S2) int StackEmpty(const Stack* s):判断一个栈是否为空3) void Push(Stack* s,const int x):进栈,将x加入使之成为新栈顶4) i...
t=0:pi/50:10*pi; plot3(sin(t),cos(t),t) xlabel('sint') ylabel(...
x = 0:0.01:2*pi %起始:步长:结束 y = sin(x) figure %建立幕布 plot(x,y) %画图 title('y = sin(x)') %加标题 xlabel('x') ylabel('y') %加标签 xlim([0 2*pi]) %让两边边缘不延长 grid on ...
for循环for i = 初始:步长:结束 end打印一个矩阵元素A = [1, 2, 3; 4, 5, 6; 7, 8, 9]; for i = ...
A(x,y)A的x行y列元素A(x,:)A的x行子矩阵A(:,y)A的y列子矩阵[x,y] = find(A>20)找A中大于20的元素,索引以矩阵形式行给m,列给n例子A = [1 2 3; 4 5 6; 7 8 9]; [m,n] = find (A > 5) m = 3 3 2 3 n = 1 2 ...