photo

Matthew Bolyard


Last seen: Today 2025 年からアクティブ

Followers: 0   Following: 0

統計

Cody

4 問題
1162 解答

ランク
N/A
of 301,036

評判
N/A

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

回答採用率
0.00%

獲得投票数
0

ランク
 of 21,151

評判
N/A

平均評価
0.00

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

ダウンロード
0

ALL TIME ダウンロード
0

ランク
71
of 172,467

コントリビューション
4 問題
1162 解答

スコア
14,619

バッジ数
51

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

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

平均評価

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

平均いいねの数

  • Sequences And Series II Master
  • Sequences And Series I Master
  • ASEE Challenge Master
  • Matrix Manipulation I Master
  • Indexing II Master
  • Indexing I Master
  • Scholar
  • Cody Problems in Japanese Master
  • Project Euler I
  • Draw Letters
  • Cody Challenge Master
  • Introduction to MATLAB Master

バッジを表示

Feeds

表示方法

解決済み


Back to basics 7 - Equal NaNs
Covering some basic topics I haven't seen elsewhere on Cody. Given 2 input variables, output true if they are equal, false ot...

約9時間 前

解決済み


05 - Vector Equations 3
Define the vector _dVec_: <<http://samle.dk/STTBDP/Assignment1_2d.png>> (Logarithmically spaced numbers between 1 and 10) ...

約9時間 前

解決済み


06 - Matrix Equations 3
Define the matrices _aMat_, _bMat_, and _cMat_: <<http://samle.dk/STTBDP/Assignment1_3a.png>> ( _aMat_ = 9x9 matrix full o...

約9時間 前

解決済み


04 - Scalar Equations 3
Define the variables a, b, and c: <<http://samle.dk/STTBDP/Assignment1_4-a.png>> <<http://samle.dk/STTBDP/Assignment1_4-b....

約9時間 前

解決済み


06 - Matrix Equations 2
Define the vectors _aVec_ and _bVec_: <<http://samle.dk/STTBDP/Assignment1_2a.png>> and <<http://samle.dk/STTBDP/Assig...

約9時間 前

解決済み


Summation of array
Given an array, Find the sum of all of the elements in it Examples: Input x = [1 2 3 5; 4 5 6 7]; Output y is 33

約9時間 前

解決済み


Replace 0 indices in array with 1's
Take a incoming vector, and replace 0's with ones

約9時間 前

解決済み


NaN

約9時間 前

解決済み


Beat the test suite if you can :)
Solve this problem based on clues in the test suite.

約9時間 前

解決済み


square root
Find the square root (y) of an input (x).

約9時間 前

解決済み


04 - Scalar Equations 2
Define the variables a and b: <<http://samle.dk/STTBDP/Assignment1_4-a.png>> <<http://samle.dk/STTBDP/Assignment1_4-b.png>...

約9時間 前

解決済み


Unit Matrix
Given n, you should return an n-by-n unit matrix. Example: If input is n=2 then A = [ 1 0 0 1 ] If input is n=4 th...

約9時間 前

解決済み


Golden ratio
Calculate the golden ratio. Hint: phi^2 = phi + 1.

約9時間 前

解決済み


metre to feet converter
The idea is to make a converter, which exchange meters to feets. We use a factor of 1m = 3.281*1f. so 3m are equals to 9.843 m...

約9時間 前

解決済み


reverse string
input='rama' output='amar'

約9時間 前

解決済み


Derivative of polynomial
Compute the derivative of a given polynomial. The input is an <http://www.mathworks.com/help/matlab/math/representing-polynomial...

約9時間 前

解決済み


Matrix to column conversion
Given a matrix of any size, convert it into a column vector. e.g A=[10 20 30; 40 50 60] then, B = [10; 40; ...

約9時間 前

解決済み


Matlab Basics II - squares
Write a function that takes matrix A, and squares each element in the matrix example: A = [1 2 3] output = [1 4 9]

約9時間 前

解決済み


Sum of integers numbers
Sum of the numbers from 1 to 100

約9時間 前

解決済み


Reverse a string
Reverse the given string. Example input = 'reverse' output = 'esrever'

約9時間 前

解決済み


Array of Ones
Create a 100 X 100 array of ones.

約9時間 前

解決済み


Sum the squares of numbers from 1 to n
For a given value of n return the sum of square of numbers from 1 to n. Example For n = 2 then sum of squares = 5 (1^2 + ...

約9時間 前

解決済み


06 - Matrix Equations 1
Define the vectors _aVec_ and _bVec_ and the matrix _aMat_: <<http://samle.dk/STTBDP/Assignment1_2a.png>> and <<http:/...

約9時間 前

解決済み


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

約9時間 前

解決済み


Mode
Find the mode of the vector Assumption: no vector is bimodal Example 1: input=[1 2 3 4 4]; output=4 Example 2: input=[7...

約9時間 前

解決済み


Product of elements in row
Product of matrix such that a=[3 3 1] b=9

約9時間 前

解決済み


y equals x divided by 2
function y = x/2

約9時間 前

解決済み


Count me in
Count the number of occurrences of the second input in the first input Ex. x1 = 12344455511; x2 =2; output = 1 ...

約9時間 前

解決済み


Rotate matrix by -90 degrees
Rotate a Matrix by -90 degrees Example: X = 1 2 3 4 5 6 7 8 9 output = 7 4 ...

約9時間 前

解決済み


Minefield Sonar
*Background* In mine-hunting games (e.g. Microsoft Minesweeper), the user is provided with a covered grid that, upon a left c...

約9時間 前

さらに読み込む