photo

Abhishek singh


Con actividad desde 2019

Followers: 0   Following: 0

Estadística

MATLAB Answers

8 Preguntas
1 Respuesta

CLASIFICACIÓN
86.094
of 297.503

REPUTACIÓN
0

CONTRIBUCIONES
8 Preguntas
1 Respuesta

ACEPTACIÓN DE RESPUESTAS
12.5%

VOTOS RECIBIDOS
0

CLASIFICACIÓN
 of 20.449

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN

of 159.017

CONTRIBUCIONES
0 Problemas
0 Soluciones

PUNTUACIÓN
0

NÚMERO DE INSIGNIAS
0

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • First Answer
  • Thankful Level 1

Ver insignias

Feeds

Ver por

Pregunta


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

casi 6 años hace | 9 respuestas | 0

9

respuestas

Respondida
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...

casi 6 años hace | 0

Pregunta


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

casi 6 años hace | 0 respuestas | 0

0

respuestas

Pregunta


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...

casi 6 años hace | 10 respuestas | 0

10

respuestas

22

respuestas

Pregunta


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...

casi 6 años hace | 5 respuestas | 0

5

respuestas

Pregunta


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 ...

casi 6 años hace | 6 respuestas | 0

6

respuestas

Pregunta


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 ...

casi 6 años hace | 1 respuesta | 0

1

respuesta

Pregunta


Write a function called under_age that takes two positive integer scalar arguments: age that represents someone's age, and limit that represents an age limit. The function returns true if the person is younger than the age limit. If the second arg
function too_young = under_age(age,limit) limit = 21 if age <= limit too_young = true; elseif age >= limit too_you...

casi 6 años hace | 27 respuestas | 0

27

respuestas