Mikio Muramatsu
Followers: 0 Following: 0
Statistics
RANK
12,444
of 295,569
REPUTATION
4
CONTRIBUTIONS
0 Questions
2 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
0
RANK
13,644 of 20,247
REPUTATION
19
AVERAGE RATING
0.00
CONTRIBUTIONS
1 File
DOWNLOADS
5
ALL TIME DOWNLOADS
179
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Solved
the average value of the elements
Calculate the average value of the elements in the array
3 years ago
Solved
Square root
Given x (a matrix), give back another matrix, where all the elements are the square roots of x's elements.
3 years ago
Solved
Flip the bit
Given an input character string (e.g. '1001'), return a character string with the bits flipped ('0110').
3 years ago
Solved
Shift elements of vector left
Shift elements of vector to the left. For ex. : Input_vec = [1 2 3 4 5] Output_vec = [2 3 4 5 1]
3 years ago
Solved
ゼロでない要素が一番多い行を探そう
行列 a が与えられたとき、行列 a の中で一番ゼロの要素が少ない行のインデクス r を返す関数を作成しましょう。このとき、行列 a には一つだけしかこの条件に当てはまる行がないと仮定します。 例: 入力として、行列 a = [ 1 ...
3 years ago
Solved
対称で、n*2n のサイズの行列を作成しましょう
サイズが n*2n の "mirror" 行列(対称行列)を作成しましょう。 例: n=2 の場合、以下のような出力を返します。 m = [ 1 2 2 1 1 2 2 1 ] n = 3 の場合、以下のよう...
3 years ago
Solved
二つのベクトルの要素ごとの積の平均を計算しよう
二つの同じ長さのベクトルが与えられたとき、二つのベクトルの要素ごとの積の平均を求めましょう。 例: 二つのベクトル [1 2 3] と [10 15 20] が与えられたとき、 それぞれの要素ごとの積の平均を取ると、 解は 33.3333 と...
3 years ago
Solved
2倍してみよう - ここからスタート!
初めにこの問題を試してみよう。 入力としてxを与え、それを2倍して結果をyに代入せよ。 Examples: Input x = 2 Output y is 4 Input x = 17 Output y is 34 ...
3 years ago
Solved
ベクトル [1 2 3 4 5 6 7 8 9 10] の作成
MATLABでは,角括弧の中に要素を入れることで、ベクトルを作成できる。 x = [1 2 3 4] また次のようにも書ける(コンマはオプション)。 x = [1, 2, 3, 4] 問題:次のベクトルを出力する関数を作成せよ。...
3 years 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:...
3 years ago
Submitted
Mass-Spring-Damper Systems (日本語版)
Japanese version of published repository Mass-Spring-Damper-systems"
3 years ago | 5 downloads |
MATLAB Graderのコースの作成者以外の講師がコピーする方法
現在のMATLAB Graderでは、コースのコピーはコースのオーナー(作成したユーザ様)のみ可能です。 もし他の講師の方にコースのオーナーを変更される場合は恐れ入りますが、以下の情報を弊社カスタマーサポート窓口までご連絡ください。http://www....
4 years ago | 0
| accepted
バンドパスフィルタのかけ方について
もしAudio Toolboxをお持ちでしたら、Parametric Equalizerを使うことで実現できると思います。 下記リンクの"Designs Based on Quality Factor"の章を是非ご参照ください。 この例にあるプログラム...
4 years ago | 0