Statistiques
RANG
253 347
of 297 016
RÉPUTATION
0
CONTRIBUTIONS
1 Question
0 Réponses
ACCEPTATION DE VOS RÉPONSES
100.0%
VOTES REÇUS
0
RANG
835 of 20 419
RÉPUTATION
2 220
CLASSEMENT MOYEN
4.90
CONTRIBUTIONS
6 Fichiers
TÉLÉCHARGEMENTS
22
ALL TIME TÉLÉCHARGEMENTS
19294
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
A résolu
Handle to an array of functions
Given a cell array of functions that operate on scalars, it is required to return a function handle to process a vector of value...
presque 11 ans il y a
A soumis
Matlab 2048
Matlab implementation of the addictive game 2048
presque 11 ans il y a | 1 téléchargement |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/submissions/46003/versions/3/screenshot.jpg)
A résolu
Distance walked 1D
Suppose you go from position 7 to 10 to 6 to 4. Then you have walked 9 units of distance, since 7 to 10 is 3 units, 10 to 6 is 4...
presque 13 ans il y a
A résolu
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...
presque 13 ans il y a
A résolu
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...
presque 13 ans il y a
A résolu
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 ...
presque 13 ans il y a
A résolu
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.
presque 13 ans il y a
A résolu
Nearest Numbers
Given a row vector of numbers, find the indices of the two nearest numbers. Examples: [index1 index2] = nearestNumbers([2 5 3...
presque 13 ans il y a
A résolu
Swap the input arguments
Write a two-input, two-output function that swaps its two input arguments. For example: [q,r] = swap(5,10) returns q = ...
presque 13 ans il y a
A résolu
Back and Forth Rows
Given a number n, create an n-by-n matrix in which the integers from 1 to n^2 wind back and forth along the rows as shown in the...
presque 13 ans il y a
A résolu
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...
presque 13 ans il y a
A résolu
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...
presque 13 ans il y a
A résolu
The Hitchhiker's Guide to MATLAB
Output logical "true" if the input is the answer to life, the universe and everything. Otherwise, output logical "false".
presque 13 ans il y a
A résolu
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...
presque 13 ans il y a
A résolu
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...
presque 13 ans il y a
A résolu
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 ...
presque 13 ans il y a
A résolu
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...
presque 13 ans il y a
A résolu
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...
presque 13 ans il y a
A résolu
Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...
presque 13 ans il y a
A résolu
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:...
presque 13 ans il y a
A soumis
Carcassonne
Emulation of the map-building game Carcassonne, including 4 expansion packs
presque 13 ans il y a | 2 téléchargements |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/submissions/34723/versions/14/screenshot.png)
A soumis
RISK
This is a digitalized version of the famous RISK board game.
environ 13 ans il y a | 1 téléchargement |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/submissions/34438/versions/3/screenshot.jpg)
A soumis
Zatacka/Achtung, die Kurve! for Matlab
Remake of the classic DOS-Game Zatacka aka Achtung die Kurve
plus de 13 ans il y a | 1 téléchargement |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/submissions/33762/versions/1/screenshot.png)
A soumis
Rubik's Cube Simulator and Solver
This program simulates, manipulates and solves all rubik's cubes. Includes webcam recognition.
plus de 13 ans il y a | 14 téléchargements |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/submissions/31672/versions/10/screenshot.jpg)
Question
How to remove whitespace around subplot figures?
I'm writing a report in LaTeX in which I need to include some MATLAB figures. One of them is a subplot consisting of 16 plots wh...
plus de 13 ans il y a | 3 réponses | 0
3
réponsesA soumis
Tetris Solver (non-playable)
This program tries to solve the Tetris problem guided by 4 constraints. Block Editor included.
plus de 13 ans il y a | 3 téléchargements |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/submissions/31765/versions/3/screenshot.jpg)