photo

Abhishek singh


2019년부터 활동

Followers: 0   Following: 0

통계

MATLAB Answers

8 질문
1 답변

순위
187,860
of 300,813

평판
0

참여
8 질문
1 답변

답변 채택
12.5%

획득한 표
0

순위
 of 21,086

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위

of 171,169

참여
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년 초과 전 | 답변 수: 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년 초과 전 | 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년 초과 전 | 답변 수: 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년 초과 전 | 답변 수: 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년 초과 전 | 답변 수: 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 ...

거의 7년 전 | 답변 수: 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 ...

거의 7년 전 | 답변 수: 1 | 0

1

답변

27

답변