Community Profile

photo

champions2015


Aktiv seit 2017

Followers: 0   Following: 0

Statistiken

  • Thankful Level 3
  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Frage


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

mehr als 6 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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

mehr als 6 Jahre vor | 4 Antworten | 0

4

Antworten

Frage


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

mehr als 6 Jahre vor | 1 Antwort | 0

1

Antwort

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

mehr als 6 Jahre vor | 0

Frage


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

mehr als 6 Jahre vor | 3 Antworten | 0

3

Antworten

Frage


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

mehr als 6 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


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

mehr als 6 Jahre vor | 4 Antworten | 0

4

Antworten