解決済み


Summing digits
Given n, find the sum of the digits that make up 2^n. Example: Input n = 7 Output b = 11 since 2^7 = 128, and 1 + ...

7年以上 前

解決済み


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

7年以上 前

解決済み


Check if sorted
Check if sorted. Example: Input x = [1 2 0] Output y is 0

7年以上 前

解決済み


Most nonzero elements in row
Given the matrix a, return the index r of the row with the most nonzero elements. Assume there will always be exactly one row th...

7年以上 前

解決済み


Who Has the Most Change?
You have a matrix for which each row is a person and the columns represent the number of quarters, nickels, dimes, and pennies t...

7年以上 前

解決済み


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

7年以上 前

解決済み


Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.

7年以上 前

解決済み


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

7年以上 前

解決済み


Coordinate geometry
Assign pointsDistance with the distance between point (x1, y1) and point (x2, y2). The distance is calculated by: Distance =...

7年以上 前

解決済み


Weighted average
Given two lists of numbers, determine the weighted average. Example [1 2 3] and [10 15 20] should result in 33.333...

7年以上 前

解決済み


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

7年以上 前

送信済み


Mosquito Drone Coverage & Elimination
Simulates using a robot to electrically kill mosquitos

7年以上 前 | ダウンロード 1 件 |

Thumbnail

送信済み


Seismic Survey Scheduler
Simulates a seismic survey over a rectangular grid of area x by y meters

7年以上 前 | ダウンロード 1 件 |

Thumbnail

送信済み


Kilobot Swarm Control using Matlab + Arduino
Controls swarm of kilobots to push object through maze. Swarm attracted to brightest light

7年以上 前 | ダウンロード 3 件 |

Thumbnail

送信済み


Arranging a robot swarm with global inputs and wall friction [discrete]
All robots get same input, but uses wall-friction to steer robots to a desired configuration.

8年以上 前 | ダウンロード 1 件 |

Thumbnail

送信済み


MDP robot grid-world example
Applies value iteration to learn a policy for a robot in a grid world.

8年以上 前 | ダウンロード 2 件 |

Thumbnail

解決済み


Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

9年弱 前

解決済み


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

9年弱 前

解決済み


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

9年弱 前

送信済み


MCLin1Dsimple
Tutorial code on particle filtering for 1D

約9年 前 | ダウンロード 1 件 |

Thumbnail

回答済み
Program to show robot motion planning.
Sounds like you want to do some motion planning. A great place to start is an RRT algorithm. You can download example code fro...

約9年 前 | 0

| 採用済み

回答済み
how do i use matlab to track an object which is clicked on screen by the user???
This problem isn't fully defined. Let's assume that you are trying to track a colored ball visible in the image and on the grou...

約9年 前 | 0

回答済み
How to enter math formula in Matlab as they appear in math
I sympathize, and do enjoy other languages with beautifully type-set formulae. Still, if we are constrained to monospaced text...

約9年 前 | 0

解決済み


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...

約9年 前

解決済み


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

約9年 前

解決済み


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

約9年 前

解決済み


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

約9年 前

解決済み


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

約9年 前

解決済み


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

約9年 前

解決済み


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

約9年 前

さらに読み込む