photo

JKMSMKJ


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

Followers: 2   Following: 6

A theoretical high energy physicist dabbling in app building.

Programming Languages:
MATLAB
Spoken Languages:
English, Hindi

統計

All
MATLAB Answers

1 質問
0 回答

File Exchange

3 ファイル

Cody

0 問題
63 解答

Discussions

1 ハイライト

ランク
179,291
of 301,195

評判
0

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

回答採用率
100.0%

獲得投票数
0

ランク
7,549 of 21,190

評判
130

平均評価
5.00

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

ダウンロード
11

ALL TIME ダウンロード
1033

ランク
8,043
of 173,322

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

スコア
936

バッジ数
8

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

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

平均評価

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

平均いいねの数
0

  • MATLAB Shorts Mini Hack Participant
  • MATLAB Flipbook Mini Hack Participant
  • Thankful Level 1
  • Cody Contest 2025 Winning Team Finishers
  • Introduction to MATLAB Master
  • 5-Star Galaxy Level 3
  • GitHub Submissions Level 1
  • Community Group Solver
  • Leader
  • Commenter
  • Promoter
  • MATLAB Mini Hack 2022 Participant

バッジを表示

Feeds

送信済み


Clueless
Lord Ned's Clueless game

4日 前 | ダウンロード 9 件 |

5.0 / 5
Thumbnail

Discussion


An app for Lord Ned's Clueless game, also called the nontrivial programming problem of Cody Contest 2025.
Clueless I coded this app to solve the 20 or so test cases included with the Cody problem 'visually' and step-by-step. For extr...

13日 前 | 0

解決済み


The twelve days of Christmas
Traditionally there are twelve days of Christmas to celebrate ("Twelvetide"), typically starting with Christmas Day (25 December...

約2ヶ月 前

解決済み


How many Christmas presents under the tree?
For many families at Christmas, each family member gives 1 present to every other family member. The main exception is that chil...

約2ヶ月 前

解決済み


Calculate days until Christmas
Provided with inputs year, month, day e.g. 2019,11,12, calculate the number of days until the next Christmas day, i.e. the next ...

約2ヶ月 前

解決済み


Clueless - Lord Ned in the Game Room with the Technical Computing Language
[Warning: this is a nontrivial programming problem] Worried about the decline in reasoning skills in the clueless populace of...

3ヶ月 前

解決済み


Transition Matrix for the Royal Game of Err
Bored of tedious court assemblies, King Neduchadneddar the Procrastinator has found a cunning way to keep his advisors, councilo...

3ヶ月 前

解決済み


Leaderboard for the Nedball World Cup
At the upcoming inaugural Nedball World Cup, organizers need to track who is in the lead for the coveted Golden Toeplitz trophy,...

3ヶ月 前

解決済み


Calculating Student Grades
The matrix grades contains raw grades for 7 students who took your course. Each row represents a different student. The first 7 ...

3ヶ月 前

解決済み


Create an arrow matrix
An arrow matrix is a square matrix that contains ones on the diagonal, the last column, and last row. ...

3ヶ月 前

解決済み


Determine if x is a combination of m and n
Given positive integers x, m, and n, determine if x can be written as x = am + bn for any (non-negative) integers a and b. Your ...

3ヶ月 前

解決済み


Dog Statistics
The vectors ht and wt contains the heights and weights of 20 golden retrievers. In some cases, it was not possible to make both ...

3ヶ月 前

解決済み


Generate this matrix
Generate the following matrix. n = 2; out = [-4 -3 -2 -1 0 -3 -2 -1 0 1 -...

3ヶ月 前

解決済み


Simpson's Paradox - Calculate correlation coefficients for groups of data
Simpson's Paradox is a statistical phenomenon where groups of data can have a characteristic while the whole data set together h...

3ヶ月 前

解決済み


Find the minimum of the column-maximums of a matrix
Given a matrix A, find the maximum value of each column, then return the smallest of those maximum values (ie return the minimum...

3ヶ月 前

解決済み


Calculate the mean of each half of a matrix
Given a matrix with an even number of columns, n, return a 1-by-2 row vector where the first element is the mean of all the elem...

3ヶ月 前

解決済み


Find Closest Constant
Given a number x, return the value that is closest to x from this list of constants: 0, 1, , e, , (also known as ). For exampl...

3ヶ月 前

解決済み


Matrix Quadrants
Write a function that takes N as the input, and outputs a matrix whose upper-left (NxN) quadrant contains all ones, the lower-ri...

3ヶ月 前

解決済み


Dartboard Average II
A dartboard arranges the numbers 1 to 20 such that each value is typically flanked by quite different values - for example, 20 i...

3ヶ月 前

解決済み


Dartboard Average I
A dartboard arranges the numbers 1 to 20 such that each value is typically flanked by quite different values - for example, 20 i...

3ヶ月 前

解決済み


Create block matrix of integers (j+k-1) - Part II
Given m, n, p, and q, create an m-by-n matrix made up of submatrices, each sized p-by-q (if possible - the last row and column o...

3ヶ月 前

解決済み


Create block matrix of integers (j+k-1) - Part I
Given m, n, p, and q, create a matrix of m-by-n blocks (submatrices), each sized p-by-q. The elements of the (j,k)th block all h...

3ヶ月 前

解決済み


Boustrophedon
Given a vector v and a positive integer n, return an m-by-n matrix containing the elements of v row-wise, alternating left-to-ri...

3ヶ月 前

解決済み


Extract the Acrostic Message
An acrostic cipher is a way of embedding one message within another by taking the first (or last) word of each line. Given a str...

3ヶ月 前

解決済み


Possible Rugby Scores
Given a natural number s (> 4), representing a rugby team's score, return an n-by-3 matrix representing all n possible combinati...

3ヶ月 前

解決済み


Triangle Coordinates
Given a natural number n, return two -element vectors, x and y, containing the coordinates of a triangular arrangement of points...

3ヶ月 前

解決済み


Split Even Number Into Two Primes
Given an even whole number n (> 2), return a 2-element vector of primes, p, such that p(1) + p(2) = n. The elements of p should ...

3ヶ月 前

解決済み


Determine if Input is Oddish or Evenish (Odd/Even Sum of Digits)
Given a positive integer n, determine whether n is "oddish" or "evenish" - that is, whether the sum of the digits of n is odd or...

3ヶ月 前

解決済み


Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.

3ヶ月 前

解決済み


Magic is simple (for beginners)
Determine for a magic square of order n, the magic sum m. For example m=15 for a magic square of order 3.

3ヶ月 前

さらに読み込む