Community Profile

photo

Alicia Cuber Caballero


Last seen: circa 4 anni fa Attivo dal 2019

Statistiche

All
  • Thankful Level 2
  • Thankful Level 1
  • Solver

Visualizza badge

Content Feed

Visto da

Domanda


Asking for user input only once with input, or take values like pi/3 with inputdlg
I have a function that calculates when you input values for n, for x, for y. Now I need to ask the user for input. I prefer how...

oltre 4 anni fa | 1 risposta | 0

1

risposta

Domanda


How to "link" an .m file to an .mlx file
Hi, I have got this assignment in which I am required to create a function to complete a task, so I used a separate .m file, whi...

oltre 4 anni fa | 1 risposta | 0

1

risposta

Risolto


Finding Perfect Squares
Given a vector of numbers, return true if one of the numbers is a square of one of the other numbers. Otherwise return false. E...

oltre 4 anni fa

Risolto


Create times-tables
At one time or another, we all had to memorize boring times tables. 5 times 5 is 25. 5 times 6 is 30. 12 times 12 is way more th...

oltre 4 anni fa

Risolto


Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...

oltre 4 anni fa

Risposto
I get index error, but the correct result. How can I avoid this?
Thank you! That's a simpler solution :)

oltre 4 anni fa | 0

Risolto


Remove any row in which a NaN appears
Given the matrix A, return B in which all the rows that have one or more <http://www.mathworks.com/help/techdoc/ref/nan.html NaN...

oltre 4 anni fa

Domanda


I get index error, but the correct result. How can I avoid this?
I am trying to solve this Cody problem where I need to remove all rows that contain NaN-s. My code looks like this: [m,n]=si...

oltre 4 anni fa | 2 risposte | 0

2

risposte

Risolto


Fibonacci sequence
Calculate the nth Fibonacci number. Given n, return f where f = fib(n) and f(1) = 1, f(2) = 1, f(3) = 2, ... Examples: Inpu...

oltre 4 anni fa

Risolto


Eight Queens Solution Checker
Write a function to verify whether an arrangement of queens on a chessboard is a valid solution to the classic <http://en.wikipe...

oltre 4 anni fa

Risolto


Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Examp...

oltre 4 anni fa

Risolto


Solve the Sudoku Row
*Description* A simple yet tedious task occurs near the end of most Sudoku-solving algorithms, computerized or manual. The ta...

oltre 4 anni fa

Risolto


Return the 3n+1 sequence for n
A Collatz sequence is the sequence where, for a given number n, the next number in the sequence is either n/2 if the number is e...

oltre 4 anni fa

Risolto


Is my wife right?
Regardless of input, output the string 'yes'.

oltre 4 anni fa

Risolto


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

oltre 4 anni fa

Risolto


Project Euler: Problem 10, Sum of Primes
The sum of the primes below 10 is 2 + 3 + 5 + 7 = 17. Find the sum of all the primes below the input, N. Thank you <http:/...

oltre 4 anni fa

Domanda


How can I break this while loop and store the data?
Hi! I'm trying to generate a collatz sequence for any n and to stop when n == 1. I used the following: n=7 while n>1 if m...

oltre 4 anni fa | 1 risposta | 0

1

risposta

Risolto


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

oltre 4 anni fa

Risolto


Add two numbers
Given a and b, return the sum a+b in c.

oltre 4 anni fa

Risolto


Return area of square
Side of square=input=a Area=output=b

oltre 4 anni fa

Risolto


Maximum value in a matrix
Find the maximum value in the given matrix. For example, if A = [1 2 3; 4 7 8; 0 9 1]; then the answer is 9.

oltre 4 anni fa

Risolto


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

oltre 4 anni fa

Risolto


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

oltre 4 anni fa