Community Profile

photo

Mikio Muramatsu

Last seen: 1 day ago Active since 2020

Statistics

All
  • Solver
  • First Submission
  • GitHub Submissions Level 1
  • Knowledgeable Level 1
  • First Answer

View badges

Content Feed

View by

Solved


Converts numbers into characters
Converts numbers into characters

2 years ago

Solved


Find the max element of the array
Find the max element of the array

2 years ago

Solved


Double all elements in the array
Duplicate all elements in the array

2 years ago

Solved


the average value of the elements
Calculate the average value of the elements in the array

2 years ago

Solved


calculate the length of matrix
input 1 array, calculate the length

2 years ago

Solved


to the 2 all elements
to the 2 all elements

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

2 years ago

Solved


Flip the bit
Given an input character string (e.g. '1001'), return a character string with the bits flipped ('0110').

2 years ago

Solved


easy problem
Find the last element of the array

2 years ago

Solved


Sum sum!!!
Sum the numbers from 1 to n

2 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]

2 years ago

Solved


ゼロでない要素が一番多い行を探そう
行列 a が与えられたとき、行列 a の中で一番ゼロの要素が少ない行のインデクス r を返す関数を作成しましょう。このとき、行列 a には一つだけしかこの条件に当てはまる行がないと仮定します。 例: 入力として、行列 a = [ 1 ...

2 years ago

Solved


対称で、n*2n のサイズの行列を作成しましょう
サイズが n*2n の "mirror" 行列(対称行列)を作成しましょう。 例: n=2 の場合、以下のような出力を返します。 m = [ 1 2 2 1 1 2 2 1 ] n = 3 の場合、以下のよう...

2 years ago

Solved


二つのベクトルの要素ごとの積の平均を計算しよう
二つの同じ長さのベクトルが与えられたとき、二つのベクトルの要素ごとの積の平均を求めましょう。 例: 二つのベクトル [1 2 3] と [10 15 20] が与えられたとき、 それぞれの要素ごとの積の平均を取ると、 解は 33.3333 と...

2 years ago

Solved


ベクトルのスケーリング
入力したベクトルの大きさを1にしてください。

2 years ago

Solved


2倍してみよう - ここからスタート!
初めにこの問題を試してみよう。 入力としてxを与え、それを2倍して結果をyに代入せよ。 Examples: Input x = 2 Output y is 4 Input x = 17 Output y is 34 ...

2 years ago

Solved


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

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

2 years ago

Submitted


Mass-Spring-Damper Systems (日本語版)
Japanese version of published repository Mass-Spring-Damper-systems"

2 years ago | 3 downloads |

Thumbnail

Answered
MATLAB Graderのコースの作成者以外の講師がコピーする方法
現在のMATLAB Graderでは、コースのコピーはコースのオーナー(作成したユーザ様)のみ可能です。 もし他の講師の方にコースのオーナーを変更される場合は恐れ入りますが、以下の情報を弊社カスタマーサポート窓口までご連絡ください。http://www....

3 years ago | 0

| accepted

Answered
バンドパスフィルタのかけ方について
もしAudio Toolboxをお持ちでしたら、Parametric Equalizerを使うことで実現できると思います。 下記リンクの"Designs Based on Quality Factor"の章を是非ご参照ください。 この例にあるプログラム...

3 years ago | 0