統計
Cody
0 問題
145 解答
ランク
N/A
of 301,652
評判
N/A
コントリビューション
0 質問
0 回答
回答採用率
0.00%
獲得投票数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
解決済み
Matlab Basics II - Determine if an array has a 3rd dimension
For an array A, determine whether it has 3 dimensions, return 0 if x is only 2D, and 1 if x is 3D
4ヶ月 前
解決済み
Test
Answer the question and the correct answer write in vector. Only one answer is correct. 1a Yes 1b No 1c No 1d No ...
4ヶ月 前
解決済み
find the mean of all elements in a matrix
given a matrix, just find the mean of all elements in the matrix
4ヶ月 前
解決済み
Equal temperament - musical notes and frequency
Starting from 440Hz note (musical note A above middle C), create 13 notes, using twelve-tone equal temperament, in Herz units. ...
4ヶ月 前
解決済み
Find the binary code
Given a sinusoidal signal, create a function that returns the binary code of a quantized value. The function takes the bit lengt...
4ヶ月 前
解決済み
Solve expression II
Solve given expression. alpha=0.1(-x-y-50)/(exp((-x-y-50)/10)-1) beta=5exp((-x+y-60)/20) result=alpha+beta;
4ヶ月 前
解決済み
Create tangent function out of sine function only
Please don't use cosine and tangent functions
4ヶ月 前
解決済み
MATLAB Basics: Complex Conjugates
For a given complex number, x, return the complex conjugate, y.
4ヶ月 前
解決済み
Do Fast Fourier Transformation
Example Fast Fourier Transformation from vector [2,1]) ans = 3 1
4ヶ月 前
解決済み
Find minimum and maximum elements of an array
For a given array find minimum and maximum elements of an array and store minimum value in first index of output and maximum in ...
4ヶ月 前
解決済み
Freebies anyone? No!!!!
Feel free to copy paste all the tests and voila you solved the problem
4ヶ月 前
解決済み
Modified Upper Matrix Mock
Given a vector v=[1 3 6 9 11], turn it into a matrix 'ramp' like so: m=[1 3 6 9 11; 0 3 6 9 11; 0 0 6 9 11; 0 0 0 9 11; 0 0 0...
4ヶ月 前
解決済み
Calculating the total earnings of a factory
The row vector, prods contains the number of various products manufactured per hour. The second row vector, prices holds values ...
4ヶ月 前
解決済み
Add the even numbers
Add only the even numbers of x example: x = [1 2 3 4 5] the positive numbers are: 2 4, so their sum is 6
4ヶ月 前
解決済み
Pad zero between every adjacent values of the vector.
you are given a vector x. you have to make an output vector y with zeros padded between every adjacent values of x. e.g x: ...
4ヶ月 前
解決済み
Rotate counterclockwise a matrix 90 deg with left-bottom element
Example: Input [ 1 2 3 4 5 6 ] Output [ 3 6 2 5 1 4 ]
4ヶ月 前
