photo

Abhishek singh


自 2019 起处于活动状态

Followers: 0   Following: 0

统计学

MATLAB Answers

8 个提问
1 个回答

排名
137,691
of 299,793

声誉
0

贡献数
8 个提问
1 个回答

回答接受率
12.5%

收到投票数
0

排名
 of 20,811

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 166,013

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • First Answer
  • Thankful Level 1

查看徽章

Feeds

排序方式:

提问


sparse2matrix random error
function [matrix]= sparse2matrix(incell); X=size(incell); q=X(2)-2; msize=incell{1}; mdef=incell{2}; matrix=repmat(mdef,msi...

6 years 前 | 9 个回答 | 0

9

个回答

已回答
I get an error, what's wrong? on Sparse matrix logic and answer
function [matrix]= sparse2matrix(incell); X=size(incell); q=X(2)-2; msize=incell{1}; mdef=incell{2}; matrix=repmat(mdef,msi...

6 years 前 | 0

提问


sparse 2matrix getting an error
function A=mysp2matsp(rowIdx,colIdx,entries) %% transform three-arrays sparse matrix to matlab sparse matrix nrow = size(r...

6 years 前 | 0 个回答 | 0

0

个回答

提问


Write a function called sparse2matrix that takes a single input of a cell vector as defined above and returns the output argument called matrix, the matrix in its traditional form
cellvec = {[2 3], 0, [1 2 3], [2 2 -3]}; matrix = sparse2matrix(cellvec) matrix = 0 3 0 0 -3 0 fun...

6 years 前 | 10 个回答 | 0

10

个回答

22

个回答

提问


Homework: Write a function called char_counter that counts the number of a certain character in a text file.
Write a function called char_counter that counts the number of a certain character in a text file. The function takes two inpu...

6 years 前 | 5 个回答 | 0

5

个回答

提问


counting no .of temperature less than 32 in array
function numfreeze = freezing(v) count = 0; i =v() j = 32 if i < 32 count = count+1 numfreeze = count else end ...

6 years 前 | 6 个回答 | 0

6

个回答

提问


finding next prime number
function k=next_prime(n) while true; n = n+1 for i in rng(2:n): if mod(n,i) == 0 break ...

6 years 前 | 1 个回答 | 0

1

个回答

27

个回答