Solved


MATLAB Basic: rounding
Do rounding near to zero Example: -8.8, answer -8 +8.1 answer 8

12 månader ago

Solved


Vector creation
Create a vector using square brackets going from 1 to the given value x in steps on 1. Hint: use increment.

12 månader ago

Solved


Doubling elements in a vector
Given the vector A, return B in which all numbers in A are doubling. So for: A = [ 1 5 8 ] then B = [ 1 1 5 ...

12 månader ago

Solved


Create a vector
Create a vector from 0 to n by intervals of 2.

12 månader ago

Solved


Flip the vector from right to left
Flip the vector from right to left. Examples x=[1:5], then y=[5 4 3 2 1] x=[1 4 6], then y=[6 4 1]; Request not ...

12 månader ago

Solved


Whether the input is vector?
Given the input x, return 1 if x is vector or else 0.

12 månader ago

Solved


Find max
Find the maximum value of a given vector or matrix.

12 månader ago

Solved


Get the length of a given vector
Given a vector x, the output y should equal the length of x.

12 månader ago

Solved


Inner product of two vectors
Find the inner product of two vectors.

12 månader ago

Solved


Arrange Vector in descending order
If x=[0,3,4,2,1] then y=[4,3,2,1,0]

12 månader ago

Answered
Reading raw image file of unknown size
If you make some assumptions about the image, there is a way to find the height and width. 1. Image is all grayscale uint8 ...

nästan 6 år ago | 1

Submitted


Faster base2dec Function
This is a fast replacement for base2dec. It has the same syntax as base2dec and does not require compiling.

nästan 6 år ago | 3 downloads |

Thumbnail

Submitted


Faster dec2base Function
This is a fast replacement for dec2base. It has the same syntax as dec2base and does not require compiling.

nästan 6 år ago | 1 download |

Thumbnail

Submitted


mfft
This code is designed to help learn and understand the fast fourier algorithm. For this purpose it is kept as short and simple a...

nästan 6 år ago | 2 downloads |

Thumbnail

Answered
initialize a MxN matrix with the same number
I know this is old but I could not let it go. I found A=zeros(M,N)+10; to be the fastest. At least on my computer. Heres...

nästan 6 år ago | 15

Answered
Matlab FFT vs MEX FFTW
The difference in speed might be caused by your inputs being rational and not complex. In this case Matlab calls the fft for rea...

mer än 6 år ago | 0

Solved


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

mer än 8 år ago

Solved


Can you reshape the matrix?
Given a matrix A, is it possible to reshape it into another matrix with the given number of rows?

mer än 8 år ago

Solved


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

mer än 9 år ago

Solved


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

mer än 9 år 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 ...

mer än 9 år ago

Solved


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

mer än 9 år ago

Solved


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

mer än 9 år ago

Solved


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

mer än 9 år ago

Solved


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

mer än 9 år ago

Solved


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

mer än 9 år ago