photo

Shubham Shubham


Last seen: 7日 前 2022 年からアクティブ

Followers: 0   Following: 1

Programming Languages:
Python, MATLAB
Spoken Languages:
English, Hindi, German
Pronouns:
He/him

統計

All
MATLAB Answers

1 質問
0 回答

Cody

1 問題
353 解答

ランク
281,631
of 300,759

評判
0

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

回答採用率
100.0%

獲得投票数
0

ランク
 of 21,081

評判
N/A

平均評価
0.00

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

ダウンロード
0

ALL TIME ダウンロード
0

ランク
348
of 170,900

コントリビューション
1 問題
353 解答

スコア
4,735

バッジ数
20

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

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

平均評価

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

平均いいねの数

  • Creator
  • Thankful Level 1
  • Cody 10th Anniversary 10-Day Streak
  • CUP Challenge Master
  • Introduction to MATLAB Master
  • Commenter
  • Promoter
  • Community Group Solver
  • Solver

バッジを表示

Feeds

表示方法

解決済み


Special matrix
Make a square matrix with this shape. For n=4 M = 1 1 0 0 1 0 1 0 0 1 0 ...

7日 前

解決済み


"mirror" matrix
Create n x 2n "mirror" matrix of this type: Examples For n = 2 m = [ 1 2 2 1 1 2 2 1 ] For n = 3 m = ...

7日 前

解決済み


Pascal's Matrix
Given an integer n &ge; 0, generate the ( _n_+1) &times; ( _n_+1) lower triangular <http://en.wikipedia.org/wiki/Pascal_matrix P...

7日 前

解決済み


How many Fibonacci numbers?
Find the number of unique Fibonacci numbers (don't count repeats) in a vector of positive integers. Example: x = [1 2 3 4...

8日 前

解決済み


Fibonacci-Sum of Squares
Given the Fibonacci sequence defined by the following recursive relation, * F(n) = F(n-1) + F(n-2) * where F(1) = 1 and F(1)...

8日 前

解決済み


Return fibonacci sequence do not use loop and condition
Calculate the nth Fibonacci number. Given n, return f where f = fib(n) and f(1) = 1, f(2) = 1, f(3) = 2, ... Examples: ...

9日 前

解決済み


Number of Even Elements in Fibonacci Sequence
Find how many even Fibonacci numbers are available in the first d numbers. Consider the following first 14 numbers 1 1 2...

9日 前

解決済み


Find the next Fibonacci number
In the sequence of Fibonacci numbers, every number is the sum of the two preceding ones: 1, 1, 2, 3, 5, 8, 13, 21, 34, 55...

9日 前

解決済み


Draw a '0' in a one matrix!

10日 前

解決済み


Rotate Matrix @180 degree
Rotate Matrix @180 degree Example A=[8 1 6; 3 5 7; 4 9 2], then answer would be [2 9 4;...

10日 前

解決済み


Is A the inverse of B?
Given a matrix A and a matrix B, is A the inverse of B? >>A=[2,4;3,5]; >>B=[-2.5,2;1.5,-1]; >>isInverse...

10日 前

解決済み


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

10日 前

解決済み


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

10日 前

解決済み


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

10日 前

解決済み


to the 2 all elements
to the 2 all elements

10日 前

解決済み


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

10日 前

解決済み


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

10日 前

解決済み


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

10日 前

解決済み


Energy Conversion 1

11日 前

解決済み


Area Conversion 2

11日 前

解決済み


Mass Conversion 2

11日 前

解決済み


Temperature Conversion 3
Given a temperature in Celcius, convert it to Fahrenheit.

11日 前

解決済み


Temperature Conversion 2

11日 前

解決済み


Temperature Conversion 1

11日 前

解決済み


find nth even fibonacci number
1st even fibonacci number=2 ; 2nd even fibonacci number=8 ..

12日 前

解決済み


find the nth fibonacci number
The Fibonacci sequence is defined as follows: give n, find the nth fibonacci number

12日 前

解決済み


Find the Nth Root of a Given Number
Find the Nth root of a given number x. Examples x = 4096 n = 4 y = 8 x = 625 n = 5 y = 3.6239

13日 前

解決済み


Find the nth composite number.
Everyone heard about the nth prime number. Let's try to find out the nth composite. For example , 1 is the first composite, 10 i...

13日 前

解決済み


Converts numbers into characters
Converts numbers into characters

14日 前

解決済み


Find the index of nth maximum of a row vector of real numbers
Given a vector of real numbers x, find the index idx of _n_ th maximum value. If nth maximum occurs more than once, return the i...

14日 前

さらに読み込む