Solved


Back to basics 7 - Equal NaNs
Covering some basic topics I haven't seen elsewhere on Cody. Given 2 input variables, output true if they are equal, false ot...

meer dan 11 jaar ago

Solved


Back to basics 14 - Keywords
Covering some basic topics I haven't seen elsewhere on Cody. Return a cell array of all MATLAB keywords

meer dan 11 jaar ago

Solved


Back to basics 12 - Input Arguments
Covering some basic topics I haven't seen elsewhere on Cody. Return a value equal to the number of input arguments to the fun...

meer dan 11 jaar ago

Question


Huge different between MatLab and operating systems?
http://www.mathworks.com/matlabcentral/answers/42564-matlab-have-memory-leaks In the thread above, it was suggested that sinc...

meer dan 11 jaar ago | 2 answers | 0

2

answers

Solved


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

bijna 12 jaar ago

Solved


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

bijna 12 jaar ago

Solved


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

bijna 12 jaar ago

Question


Change what folder matlab starts up with
Ok this is probably a stupid question but nothing I found on the internet works for me. When you start up MatLab there's the cur...

bijna 12 jaar ago | 2 answers | 0

2

answers

Question


Force matlab to quit while stuck in an infinite loop?
I found some newsgroup postings from about 4 years ago and back then there was no way to terminate a script from running in a in...

bijna 12 jaar ago | 3 answers | 2

3

answers

Question


Chars with white space
Using xmlread() I found that MatLab adds a lot of white space into the project for whatever reason. But I get values when I read...

bijna 12 jaar ago | 2 answers | 0

2

answers

Solved


Too mean-spirited
Find the mean of each consecutive pair of numbers in the input row vector. For example, x=[1 2 3] ----> y = [1.5 2.5] x=[1...

bijna 12 jaar ago

Solved


Roll the Dice!
*Description* Return two random integers between 1 and 6, inclusive, to simulate rolling 2 dice. *Example* [x1,x2] =...

bijna 12 jaar ago

Solved


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

bijna 12 jaar ago

Solved


Is my wife right? Now with even more wrong husband
Again, as in "Is my wife right?" ( <http://www.mathworks.com/matlabcentral/cody/problems/149-is-my-wife-right> ), answer 'yes' r...

bijna 12 jaar ago

Solved


How to find the position of an element in a vector without using the find function
Write a function posX=findPosition(x,y) where x is a vector and y is the number that you are searching for. Examples: fin...

bijna 12 jaar ago

Solved


Make one big string out of two smaller strings
If you have two small strings, like 'a' and 'b', return them put together like 'ab'. 'a' and 'b' => 'ab' For extra ...

bijna 12 jaar ago

Solved


Bottles of beer
Given an input number representing the number of bottles of beer on the wall, output how many are left if you take one down and ...

bijna 12 jaar ago

Solved


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

bijna 12 jaar ago

Solved


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

bijna 12 jaar ago

Solved


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

bijna 12 jaar ago

Solved


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

bijna 12 jaar ago

Solved


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

bijna 12 jaar ago

Solved


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

bijna 12 jaar ago

Question


Get line properties from it's handle
I’m trying to get a lines property from its handle. I do this to get the handle to the line: lines = get_param(outPorts{i},...

bijna 12 jaar ago | 1 answer | 0

1

answer

Question


Use add_line on a line?
I was wondering if you could get a handle from a line and draw a line from that to something else. Kaustubha helped me with the ...

bijna 12 jaar ago | 2 answers | 0

2

answers

Solved


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

bijna 12 jaar ago

Solved


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

bijna 12 jaar ago

Question


Any way to figure out what your blocks are connected to in a model?
inPorts = find_system(modelName,'SearchDepth',2,'BlockType','Inport'); outPorts = find_system(modelName,'SearchDepth',2,'Bl...

bijna 12 jaar ago | 1 answer | 1

1

answer

Question


replace_block and load_system
I have 2 questions, first being: 1. Can replace_block replace blocks with custom made blocks? I'm having some trouble with th...

bijna 12 jaar ago | 1 answer | 0

1

answer

Solved


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

bijna 12 jaar ago

Load more