photo

Georgios


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

Followers: 1   Following: 1

TUC Student

統計

All
MATLAB Answers

0 質問
1 回答

File Exchange

1 ファイル

Cody

17 問題
345 解答

ランク
42,024
of 302,134

評判
0

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

回答採用率
0.00%

獲得投票数
0

ランク
 of 21,566

評判
0

平均評価
0.00

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

ダウンロード
0

ALL TIME ダウンロード
0

ランク
327
of 179,334

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

スコア
5,174

バッジ数
26

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

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

平均評価

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

平均いいねの数

  • MATLAB Central Treasure Hunt Finisher
  • First Answer
  • Draw Letters
  • Cody Problems in Japanese Master
  • First Submission
  • Puzzler
  • Introduction to MATLAB Master
  • Speed Demon
  • Creator
  • Promoter
  • CUP Challenge Master
  • Commenter

バッジを表示

Feeds

表示方法

解決済み


Find the Pattern 2

35分 前

解決済み


Find the Pattern 1

43分 前

送信済み


Integral calculation
Calculate integrals with the use of the Simpson rule.

約7時間 前 | ダウンロード 0 件 |

0.0 / 5

解決済み


Tent matrix
Create an n x n matrix that resembles one kind of tent. The variable n is provided to the function and will be an odd number. As...

約7時間 前

解決済み


Diagonal Pattern
For a positive integer |n|, return an |nXn| matrix |mat| such that the value of each element in row |i| and column |j| is given ...

6日 前

解決済み


Union Jack Matrix
Create a matrix of odd dimensions that has ones on both diagonals and dividing the matrix into 4 quadrants, resembling a square ...

6日 前

解決済み


Vandermonde Matrix
Create the Vandermonde Matrix of the given vector. The matrix consists of columns as powers of the vector, so the first column i...

6日 前

解決済み


create a square matrix
create a [n*n] matrix. example: mat(4)= [ 1 4 9 16 4 4 9 16 9 9 ...

6日 前

解決済み


Create a square matrix with given conditions
Create a square matrix, M, which should be populated as follows: M = [ n^2 n * (n-1) n * (n-2) ... n * 2 n * ...

6日 前

解決済み


Form a square matrix from four square sub-matrices
Create a square matrix, y, from 4 square sub-matrices that will be constructed (x1, x2, x3, x4): y = [x1 x2; x3 x4]; ...

6日 前

解決済み


Check if a matrix is a palindrome in all directions
Check if a matrix is a palindrome both vertically and horizontally. You function will return *true* for |[1,2,1]| or |[2,7,2;...

6日 前

解決済み


Dice face matrix!
This is dice simulator, but instead of making a random die number, you will receive an "pre-rolled" number in and spit out a mat...

6日 前

解決済み


Convert given decimal number to binary number.
Convert given decimal number to binary number. Example x=10, then answer must be 1010.

7日 前

解決済み


Find the longest sequence of 1's in a binary sequence.
Given a string such as s = '011110010000000100010111' find the length of the longest string of consecutive 1's. In this examp...

7日 前

解決済み


List the twin prime couples
Problem statement The twin prime couples (p,p') are the ones such that p' = p + 2. For a given integer n > 1, list the twin p...

10日 前

解決済み


Check p = 6n +/- 1, the generic formula for odd prime numbers greater than 3
Problem statement For all odd prime number p greater than 3, there exists a positive integer n, such that p = 6n +/- 1 : ...

10日 前

解決済み


Check p = 4n +/- 1, the generic formula for odd prime numbers
Problem statement For all odd prime number p, there exists a positive integer n, such that p = 4n +/- 1 : Check this f...

10日 前

解決済み


List the near-square primes, p = n² + 1 (Landau's 4th problem)
Historical context At the 1912 International Congress of Mathematicians, Edmund Landau listed four basic problems about prime...

10日 前

問題


Calculate integrals using numerical methods 3.
Now let's compare the 2 previous rules. Using the "Simpson 1/3" rule and the trapezoidal rule, NOT THE SIMPLE ONES, calculate th...

10日 前 | 0 | 4 個のソルバー

問題


Calculate integrals using numerical methods 2.
Calculate the following integral(I) using the SIMPLE(thus n =1) trapezoidal rule: The llimits(a,b) of the integral will be gi...

10日 前 | 0 | 4 個のソルバー

問題


Calculate integrals using numerical methods 1.
Calculate the following intergral using the SIMPLE "Simpson 1/3" rule: Further explanation: a is the upper limit of the inte...

10日 前 | 0 | 4 個のソルバー

解決済み


Back to basics - mean of corner elements of a matrix
Calculate the mean of corner elements of a matrix. e.g. a=[1 2 3; 4 5 6; 7 8 9;] Mean = (1+3+7+9)/4 = 5

11日 前

解決済み


Find Logic 20

11日 前

問題


Swap the column given with another one!
We have a random sized matrix A. You have to change the nth column with the kth column. The result must be a matrix B. For exam...

12日 前 | 0 | 9 個のソルバー

解決済み


The MATLAB Treasure Hunt – Unlock the Final Chamber by Solving the Ancient Numeric Cipher
You’ve reached the Final Chamber, where a glowing pedestal displays a sequence of numbers. The inscription reads: “Only the su...

12日 前

解決済み


The MATLAB Treasure Hunt – Escape the Labyrinth of Logic by Unlocking the Correct Door Sequence
You enter the Labyrinth of Logic, where each door opens only if a secret rule is met. A vector of integers represents door code...

12日 前

解決済み


The MATLAB Treasure Hunt – Locate the Hidden Treasure in the Chamber of Coordinates
Inside the Chamber of Coordinates, glowing runes show several coordinate points on a 2D grid. The treasure lies closest to the ...

12日 前

解決済み


The MATLAB Treasure Hunt – Cross the River of Ratios by Finding Successive Proportions in the Data Stream
Following the glowing script, you arrive at the River of Ratios — a flowing stream of numbers. A carved message on the rocks re...

12日 前

解決済み


The MATLAB Treasure Hunt – Decode the Ancient Script by Removing Strange Symbols from the Message
Emerging from the Maze of Numbers, you find a tablet etched with symbols and letters — an Ancient Script! The message is hidden...

12日 前

解決済み


The MATLAB Treasure Hunt – Identify the Hidden Pattern Within the Maze of Numbers
The compass leads you to an underground chamber covered in numbers carved into the walls — a maze of digits that glows in myster...

12日 前

さらに読み込む