문제를 풀었습니다


Convert hex color specification to MATLAB RGB
Here's something that comes up all the time if you deal with web pages. Given a <http://www.w3schools.com/html/html_colors.as...

9년 초과 전

문제를 풀었습니다


7 segment LED display
Given a whole number, output how many segments would be lit up to display it on a 7 segment LED display (http://en.wikipedia.org...

9년 초과 전

문제를 풀었습니다


Elapsed time is -0.005204 seconds.
Write a function that takes less than zero seconds to execute, as measured using tic and toc. For repeatability, the test case p...

9년 초과 전

문제를 풀었습니다


Implement a counter
Write a function that returns a function that counts the number of times it is invoked. Example: >> h = counter; >> h() ...

9년 초과 전

문제를 풀었습니다


Narcissistic problem
How many likes has this problem?

9년 초과 전

문제를 풀었습니다


poll: would you like the regexp (?@cmd) functionality to be banned in Cody?
This problem is a poll (and a little bit of "white hat hacktivism" as well) regarding Cody users sentiment about the use of rege...

9년 초과 전

답변 있음
I can't install the Freescale FRDM-KL25Z Support Package
This issue should now be resolved. It was due to a third party tool moving. The Support Package Installer not only installs th...

9년 초과 전 | 0

답변 있음
Freescale Cup Companion App doesn't work!
Dear Arashjot, This issue is seen in R2014b, because the Freescale Cup Companion App checks if the Embedded Coder Support Pac...

9년 초과 전 | 2

답변 있음
Does MathWorks support the Freescale Cup competition?
Yes. MathWorks is currently sponsoring the 2014 Freescale Cup. This means that student teams have access to an assortment of o...

9년 초과 전 | 0

| 수락됨

질문


Does MathWorks support the Freescale Cup competition?
Does MathWorks support the Freescale Cup competition? If it does, what can student teams get to help them in this competition?

9년 초과 전 | 답변 수: 1 | 0

1

답변

문제를 풀었습니다


Another colon problem
This is simple problem based on problems 555, 801, 1118, etc. Create an index vector from two input vectors. Example: ...

거의 10년 전

문제를 풀었습니다


The prisoner
"We want information, information, information." "Who are you?" Input can be a string or a number (array).

거의 10년 전

문제를 풀었습니다


Concatenate strings
concatenate a variable number of input strings to produce one outputstring

거의 10년 전

문제를 풀었습니다


ベクトル [1 2 3 4 5 6 7 8 9 10] の作成
MATLABでは,角括弧の中に要素を入れることで、ベクトルを作成できる。 x = [1 2 3 4] また次のようにも書ける(コンマはオプション)。 x = [1, 2, 3, 4] 問題:次のベクトルを出力する関数を作成せよ。...

거의 10년 전

문제를 풀었습니다


Close MATLAB with keyboard
Close MATLAB with keyboard without using mouse

거의 10년 전

문제를 풀었습니다


Unit Matrix
Given n, you should return an n-by-n unit matrix. Example: If input is n=2 then A = [ 1 0 0 1 ] If input ...

거의 10년 전

문제를 풀었습니다


Palindrome Check
Check whether the entire matrix is palindrome or not. Example matrix = [7 8 7] matrix_reverse = [7 8 7] So the mat...

거의 10년 전

문제를 풀었습니다


Concatenate two strings
Its very easy. Just concatenate two strings.

거의 10년 전

문제를 풀었습니다


Negative Infinity
Round the given array a towards negative infinity.

거의 10년 전

문제를 풀었습니다


Determine the square root
Determine the square root of the value the user has entered, n.

거의 10년 전

문제를 풀었습니다


Reverse a matrix
Its simple. You have to reverse a given matrix.

거의 10년 전

문제를 풀었습니다


Find the dimensions of a matrix
Just find the number of columns of the given matrix. Example x = [1 2 3 4 5 6] y = 2

거의 10년 전

문제를 풀었습니다


Compare two input matrices
Check which input matrix has more elements. Return "1" if matrix A has more elements than matrix B. Otherwise return "0". Exa...

거의 10년 전

문제를 풀었습니다


Symmetry of vector
Determine whether the vector is symmetric or not (vector could be even or odd in length). For example: x = [1 2 3 3 2 1] ...

거의 10년 전

문제를 풀었습니다


convert matrix to single column
given any matrix, convert it to single column

거의 10년 전

문제를 풀었습니다


Positive Infinity
Round the array a towards positive infinity

거의 10년 전

문제를 풀었습니다


Mode
Find the mode of the vector Assumption: no vector is bimodal Example 1: input=[1 2 3 4 4]; output=4 Example 2: input=[7...

거의 10년 전

문제를 풀었습니다


Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
The given function returns the index of the maximum value in a given matrix. such as X=[4,3,4,5,9,12,0,5] Ans= 6 if maxim...

거의 10년 전

문제를 풀었습니다


Basic arrays operations.
Apply element-by-element binary operation 'fun' to two arrays (A and B).

거의 10년 전

문제를 풀었습니다


Matrix to column conversion
Given a matrix of any size, convert it into a column vector. e.g A=[10 20 30; 40 50 60] then, B = [10; 40; ...

거의 10년 전

더 보기