BOB MATHEW SYJI - MATLAB Central
photo

BOB MATHEW SYJI


Last seen: 10ヶ月 前 2020 年からアクティブ

Followers: 0   Following: 0

M Tech graduate in Power Systems

統計

All
CodyMATLAB AnswersFrom 09/20 to 05/25Use left and right arrows to move selectionFrom 09/20Use left and right arrows to move left selectionTo 05/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

0 質問
31 回答

Cody

0 問題
157 解答

ランク
1,278
of 298,416

評判
56

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

回答採用率
0.00%

獲得投票数
4

ランク
 of 20,586

評判
N/A

平均評価
0.00

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

ダウンロード
0

ALL TIME ダウンロード
0

ランク
1,214
of 161,156

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

スコア
1,907

バッジ数
7

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

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

平均評価

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

平均いいねの数

  • Knowledgeable Level 3
  • Knowledgeable Level 2
  • Revival Level 1
  • First Answer
  • CUP Challenge Master
  • Introduction to MATLAB Master
  • Community Group Solver
  • Solver

バッジを表示

Feeds

表示方法

解決済み


Is my wife right?
Regardless of input, output the string 'yes'.

4年以上 前

解決済み


Is the input divisible by 3?
Return true if the input is divisible by 3 and false if not.

4年以上 前

解決済み


Add two numbers
Calculate the sum of two numbers. Example input = [2 3] output = 5

4年以上 前

解決済み


Tiling a matrix
Given a matrix and a number of columns, replicate matrix in a single row

4年以上 前

解決済み


Square wave average calculation
Given its peak and duty cycle, calculate avg value of square wave

4年以上 前

解決済み


Create incrementing array
Given a and b generate an output matrix as shown in following examples: a=2 b=5 output=[2 20 200 2000 20000] a=4 b...

4年以上 前

解決済み


convert matrix to single column
given any matrix, convert it to single column

4年以上 前

解決済み


Average of square wave
given positive and negative peak , calculate dc level, 50% duty cycle

4年以上 前

解決済み


Calculate the peak value of square wave
Given the peak value of sine wave, calculate corresponding peak value of square wave, if both have same RMS voltage.

4年以上 前

解決済み


Area of a disk
Find the area of a disk or circle. x= radius of the disk.

4年以上 前

解決済み


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

4年以上 前

解決済み


Area of a Square
Inside a square is a circle with radius r. What is the area of the square?

4年以上 前

解決済み


calculate RMS voltage
given peak to peak voltage, calculate rms voltage

4年以上 前

解決済み


Calculate distance travelled when given radius and rotations
When given radius of wheel and number of rotations calculate total distance travelled consider pi=3.14

4年以上 前

解決済み


Negative matrix
Change the sign of all elements in given matrix.

4年以上 前

解決済み


Back to basics 15 - classes
Covering some basic topics I haven't seen elsewhere on Cody. Return the class of the input variable.

4年以上 前

解決済み


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

4年以上 前

解決済み


Find the maximum number of decimal places in a set of numbers
Given a vector or matrix of values, calculate the maximum number of decimal places within the input. Trailing zeros do not coun...

4年以上 前

解決済み


Make roundn function
Make roundn function using round. x=0.55555 y=function(x,1) y=1 y=function(x,2) y=0.6 y=function(x,3) ...

4年以上 前

解決済み


Rounding off numbers to n decimals
Inspired by a mistake in one of the problems I created, I created this problem where you have to round off a floating point numb...

4年以上 前

解決済み


Matlab Basics - Rounding III
Write a script to round a large number to the nearest 10,000 e.g. x = 12,358,466,243 --> y = 12,358,470,000

4年以上 前

解決済み


Matlab Basics - Rounding II
Write a script to round a variable x to 3 decimal places: e.g. x = 2.3456 --> y = 2.346

4年以上 前

解決済み


Check that number is whole number
Check that number is whole number Say x=15, then answer is 1. x=15.2 , then answer is 0. <http://en.wikipedia.org/wiki/Whole...

4年以上 前

解決済み


MATLAB Basic: rounding IV
Do rounding towards plus infinity. Example: -8.8, answer -8 +8.1 answer 9 +8.50 answer 9

4年以上 前

解決済み


MATLAB Basic: rounding III
Do rounding towards minus infinity. Example: -8.8, answer -9 +8.1 answer 8 +8.50 answer 8

4年以上 前

解決済み


MATLAB Basic: rounding II
Do rounding nearest integer. Example: -8.8, answer -9 +8.1 answer 8 +8.50 answer 9

4年以上 前

解決済み


MATLAB Basic: rounding
Do rounding near to zero Example: -8.8, answer -8 +8.1 answer 8

4年以上 前

解決済み


Factorial Numbers
Factorial is multiplication of integers. So factorial of 6 is 720 = 1 * 2 * 3 * 4* 5 *6 Thus 6 factorial = factorial(720)....

4年以上 前

解決済み


Reverse a matrix
Its simple. You have to reverse a given matrix.

4年以上 前

解決済み


Find the square of the sum of the digits of a number
If a number (n) is provided as an input, find the square of the sum of the digits of the number. Example If n = 21, the an...

4年以上 前

さらに読み込む