photo

champions2015


Con actividad desde 2017

Followers: 0   Following: 0

Estadísticas

  • Thankful Level 3
  • First Answer

Ver insignias

Feeds

Ver por

Pregunta


Whenever I run this function, all is good if A(i)==N. However when it is not found, the function seems to run super slowly that i never end up getting the output of 0. Do I need to preallocate somewhere? If so, what would it be?
"Write a function, Finder, that receives an array of numbers A and a number N and returns the position of N within the array A o...

más de 6 años hace | 1 respuesta | 0

1

respuesta

Pregunta


In this question, would dig be 2 inputs, such as 91 and 99? And lim can be any number the user calls?
A palindromic number reads the same both ways. The largest palindrome made from the product of two 2-digit numbers is 9009 = 91 ...

más de 6 años hace | 4 respuestas | 0

4

respuestas

Pregunta


For the second part of the question, I keep on getting the following error. I am assuming this is because I need to somehow create a cell inside the cell corresponding to Out? What would be the simplest way of doing this?
An n-by-n square logical matrix can be represented by a cell vector of n elements where the kth element corresponds to the kth r...

más de 6 años hace | 1 respuesta | 0

1

respuesta

Respondida
An n-by-n square logical matrix can be represented by a cell vector of n elements where the kth element corresponds to the kth row of the matrix. Each element of the cell vector is a row vector of positive integers in increasing order representing th
Thanks Stephen! I applied your code which helped me understand what the function was doing, and what the question was asking! I ...

más de 6 años hace | 0

Pregunta


whenver i insert this if statement inside a for loop, i get an error. Could someone please explain why? Much appreciated!
if class(input(i))=='double' in this case, i want to check if the value of input(i) in the string 'input' is a number &nbs...

más de 6 años hace | 3 respuestas | 0

3

respuestas

Pregunta


An n-by-n square logical matrix can be represented by a cell vector of n elements where the kth element corresponds to the kth row of the matrix. Each element of the cell vector is a row vector of positive integers in increasing order representing th
I don't exactly understand what the question is asking here, despite reading it over and over multiple times. Is the input the n...

más de 6 años hace | 2 respuestas | 0

2

respuestas

Pregunta


Write a function called spiral_diag_sum that takes an odd positive integer n as an input and computes the sum of all the elements in the two diagonals of the n-by-n spiral matrix.
function [ MySum ] = spiral_diag_sum( n ) MySum=1; if n==1 return end for i=3:2:n mult...

más de 6 años hace | 4 respuestas | 0

4

respuestas