photo

Elizabeth Brito


Last seen: 5 years 前 自 2020 起处于活动状态

Followers: 0   Following: 0

统计学

MATLAB Answers

3 个提问
0 个回答

排名
188,825
of 300,853

声誉
0

贡献数
3 个提问
0 个回答

回答接受率
0.0%

收到投票数
0

排名
 of 21,094

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 171,319

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

Feeds

排序方式:

提问


Create upper triangular matrix using for loop in matlab
v = 1:6; n = round((sqrt(8 * numel(v) + 1) - 1) / 2); M = zeros(n, n); c = 0; for i2 = 1:n for i1 = 1:i2 ...

5 years 前 | 0 个回答 | 0

0

个回答

提问


Inverse matrix with for loop, dimensions are wrong I don't know how to fix it
C=[-2,3; 6,5] [m,n]=size(C) z=zeros(m,n) %cofactor c1= C(2,2) c2 = -C(1,2) c3 = -C(2,1) c4 = C(1,1) %cofactor...

5 years 前 | 0 个回答 | 0

0

个回答

提问


Inverse matrix with for loop
Using for loops, program a general code for calculating the inverse of a given matrix in the 2X2 and 3X3 cases. Can someone hel...

5 years 前 | 1 个回答 | 0

1

个回答