photo

Michelle


2014 年からアクティブ

Followers: 0   Following: 0

統計

Cody

0 問題
17 解答

ランク
N/A
of 302,098

評判
N/A

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

回答採用率
0.00%

獲得投票数
0

ランク
 of 21,542

評判
N/A

平均評価
0.00

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

ダウンロード
0

ALL TIME ダウンロード
0

ランク
24,293
of 178,932

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

スコア
230

バッジ数
2

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

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

平均評価

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

平均いいねの数

  • Speed Demon
  • Solver

バッジを表示

Feeds

表示方法

解決済み


ASCii Code
Using Matlab get the ASCii for '?'

12年弱 前

解決済み


ASCii Code
Using matlab, give the symbol that is associated with ASCii code 122

12年弱 前

解決済み


Flipping
Write code that can reverse the vector without using any sort of loop. Example Given the input vector A = [ 1 2 3 4 5...

12年弱 前

解決済み


Building matrices
If you have matrix A, create matrix B using matrix A as an "element" A = [1 2 3 4; 5 6 7 8...

12年弱 前

解決済み


Squaring Matrix
Square the following matrix using matlab % A = 1 2 3 4 5 6 7 8 So new matrix should display...

12年弱 前

解決済み


Deleting an element in a matrix
For vector Grades=[98 56 78 34 100 88 87], delete the number 78 to get the following matrix Grades=[98 56 34 100 88 87] **re...

12年弱 前

解決済み


Vectors counting by 2
Create a vector numbers from 7 to 15 in increments of 2

12年弱 前

解決済み


Counting down
Create a vector that counts from 450 to 200 in increments of 10.

12年弱 前

解決済み


Remainder
Make 'y' equal to the remainder of 27 divided by 5. When x=27 and t=5

12年弱 前

解決済み


Complex number
For complex number c=a+bi, write code that will add a and b together.

12年弱 前

解決済み


Evaluating a polynomial
Given the following polynomial and the value for x, determine y. y = 3x^5 – x^3 + 8x – 3 Example x = 1 y = 3 - 1 +...

12年弱 前

解決済み


length of a vector
Find twice the length of a given vector.

12年弱 前

解決済み


Rounding
Round 10.67 and make 'y' equal to that number.

12年弱 前

解決済み


Add two numbers
Given a and b, return the sum a+b in c.

12年弱 前

解決済み


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

12年弱 前

解決済み


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

12年弱 前

解決済み


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

12年弱 前