Community Profile

photo

Mikio Muramatsu

Last seen: 6일 전 2020년부터 활동

Followers: 0   Following: 0

통계

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

배지 보기

Feeds

보기 기준

문제를 풀었습니다


Converts numbers into characters
Converts numbers into characters

2년 초과 전

문제를 풀었습니다


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

2년 초과 전

문제를 풀었습니다


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

2년 초과 전

문제를 풀었습니다


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

2년 초과 전

문제를 풀었습니다


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

2년 초과 전

문제를 풀었습니다


to the 2 all elements
to the 2 all elements

2년 초과 전

문제를 풀었습니다


Square root
Given x (a matrix), give back another matrix, where all the elements are the square roots of x's elements.

2년 초과 전

문제를 풀었습니다


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

2년 초과 전

문제를 풀었습니다


easy problem
Find the last element of the array

2년 초과 전

문제를 풀었습니다


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

2년 초과 전

문제를 풀었습니다


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

문제를 풀었습니다


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

2년 초과 전

문제를 풀었습니다


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

2년 초과 전

문제를 풀었습니다


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

2년 초과 전

문제를 풀었습니다


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

2년 초과 전

문제를 풀었습니다


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

2년 초과 전

문제를 풀었습니다


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

2년 초과 전

문제를 풀었습니다


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

제출됨


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

2년 초과 전 | 다운로드 수: 3 |

Thumbnail

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

3년 초과 전 | 0

| 수락됨

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

3년 초과 전 | 0