Community Profile

photo

champions2015


Active since 2017

Followers: 0   Following: 0

Statistics

  • Thankful Level 3
  • First Answer

View badges

Feeds

View by

Question


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

mer än 6 år ago | 1 answer | 0

1

answer

Question


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

mer än 6 år ago | 4 answers | 0

4

answers

Question


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

mer än 6 år ago | 1 answer | 0

1

answer

Question


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

mer än 6 år ago | 3 answers | 0

3

answers

Question


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

mer än 6 år ago | 2 answers | 0

2

answers

Question


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

mer än 6 år ago | 4 answers | 0

4

answers