Mikio Muramatsu - MATLAB Central
photo

Mikio Muramatsu

Last seen: 3日 前 2020 年からアクティブ

Followers: 0   Following: 0

統計

All
CodyMATLAB AnswersFile ExchangeFrom 08/20 to 03/25Use left and right arrows to move selectionFrom 08/20Use left and right arrows to move left selectionTo 03/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

0 質問
2 回答

File Exchange

1 ファイル

Cody

0 問題
18 解答

ランク
12,732
of 297,716

評判
4

コントリビューション
0 質問
2 回答

回答採用率
0.00%

獲得投票数
0

ランク
13,320 of 20,469

評判
22

平均評価
0.00

コントリビューション
1 ファイル

ダウンロード
12

ALL TIME ダウンロード
209

ランク
24,809
of 159,428

コントリビューション
0 問題
18 解答

スコア
200

バッジ数
1

コントリビューション
0 投稿

コントリビューション
0 パブリック チャネル

平均評価

コントリビューション
0 ハイライト

平均いいねの数

  • Personal Best Downloads Level 1
  • Solver
  • First Submission
  • GitHub Submissions Level 1
  • Knowledgeable Level 1
  • First Answer

バッジを表示

Feeds

表示方法

解決済み


Converts numbers into characters
Converts numbers into characters

約3年 前

解決済み


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

約3年 前

解決済み


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

約3年 前

解決済み


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

約3年 前

解決済み


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

約3年 前

解決済み


to the 2 all elements
to the 2 all elements

約3年 前

解決済み


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

約3年 前

解決済み


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

約3年 前

解決済み


easy problem
Find the last element of the array

約3年 前

解決済み


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

約3年 前

解決済み


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年 前

解決済み


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

約3年 前

解決済み


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

約3年 前

解決済み


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

約3年 前

解決済み


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

約3年 前

解決済み


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

約3年 前

解決済み


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

約3年 前

解決済み


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年以上 前