문제를 풀었습니다


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

12개월 전

문제를 풀었습니다


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

12개월 전

문제를 풀었습니다


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개월 전

문제를 풀었습니다


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

12개월 전

문제를 풀었습니다


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개월 전

문제를 풀었습니다


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

12개월 전

문제를 풀었습니다


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

12개월 전

문제를 풀었습니다


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

12개월 전

문제를 풀었습니다


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

12개월 전

문제를 풀었습니다


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

12개월 전

답변 있음
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 ...

거의 6년 전 | 1

제출됨


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

거의 6년 전 | 다운로드 수: 3 |

Thumbnail

제출됨


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

거의 6년 전 | 다운로드 수: 1 |

Thumbnail

제출됨


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

거의 6년 전 | 다운로드 수: 2 |

Thumbnail

답변 있음
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...

거의 6년 전 | 15

답변 있음
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...

6년 초과 전 | 0

문제를 풀었습니다


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

8년 초과 전

문제를 풀었습니다


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

8년 초과 전

문제를 풀었습니다


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

9년 초과 전

문제를 풀었습니다


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

9년 초과 전

문제를 풀었습니다


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년 초과 전

문제를 풀었습니다


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

9년 초과 전

문제를 풀었습니다


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

9년 초과 전

문제를 풀었습니다


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

9년 초과 전

문제를 풀었습니다


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

9년 초과 전

문제를 풀었습니다


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

9년 초과 전