untitled4.asv
来自「this file consists of many matlab progra」· ASV 代码 · 共 18 行
ASV
18 行
a=[1 2 3;1 2 3;1 2 3] %%creating matrix%%
b=[2 2 3;2 2 3;2 2 3]
c=a+b %%adding matrix%%
sum(a) %%adding elements of columns%%
sum(b')' %%adding elements of rows%%
d=b-a %%substracting matrix %%
h(1,1)=1 %%creating (h) as identity matrix%%
h(2,2)=1
h(3,3)=1
t=c'*d' %%multiplying transpose of matrix%%
%% creting matrix with the help of zeros and ones %%
g=zeros(3,4)
j=2*ones(2,4)
%%calculating determinant of matrix %%
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?