photo

Dyuman Joshi


Last seen: 1 jour il y a Actif depuis 2012

Followers: 4   Following: 4

Message

Mechanical Engineer (IITG '20) | Moderator - MATLAB Cody since Jan 2021 | Time zone - IST (GMT +5.30) For any queries related to MATLAB Cody/Answers, contact me through my profile.

Programming Languages:
Python, MATLAB
Spoken Languages:
English, Hindi
Pronouns:
He/him
Professional Interests:
Fluid Dynamics, Aerospace Engineering, Computational Fluid Dynamics (CFD), Hydraulics and Pneumatics

Statistiques

All
MATLAB Answers

10 Questions
1 245 Réponses

File Exchange

1 Fichier

Cody

46 Problèmes
4213 Solutions

Discussions

1 Point fort

RANG
45
of 300 942

RÉPUTATION
4 358

CONTRIBUTIONS
10 Questions
1 245 Réponses

ACCEPTATION DE VOS RÉPONSES
70.0%

VOTES REÇUS
655

RANG
8 194 of 21 116

RÉPUTATION
108

CLASSEMENT MOYEN
5.00

CONTRIBUTIONS
1 Fichier

TÉLÉCHARGEMENTS
8

ALL TIME TÉLÉCHARGEMENTS
949

RANG
9
of 171 806

CONTRIBUTIONS
46 Problèmes
4213 Solutions

SCORE
48 399

NOMBRE DE BADGES
76

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
1 Point fort

NOMBRE MOYEN DE LIKES
0

  • MATLAB Mini Hack Participant
  • Treasure Hunt Participant
  • Thankful Level 4
  • 24 Month Streak
  • Magic Numbers II Master
  • Indexing I Master
  • Personal Best Downloads Level 2
  • 5-Star Galaxy Level 1
  • Most Accepted 2023
  • Cody Challenge Master
  • Guiding Light
  • Matrix Manipulation II Master

Afficher les badges

Feeds

A résolu


Find record values in a sequence
Write a function to find the record values in a sequence—that is, the largest values seen since the start. For example, if the s...

2 jours il y a

A résolu


Find the area between curves (P4)

5 jours il y a

A résolu


Count the ones in a divisibility matrix
Cody Problem 59506 asked solvers to compute the determinant of matrix consisting of ones in the first column and anywhere the ro...

5 jours il y a

A résolu


Scaling vertically parabola by evaluating its area over an interval
Let p be a quadratic polynomial, with its axis of symmetry being the y-axis. Considering the vertical shift of its vertex to the...

5 jours il y a

A résolu


Determine whether a number is a repfigit number
A sequence of numbers is constructed from a number with the following steps: List the digits of . Compute the ()st term as t...

9 jours il y a

A résolu


How Long is the Border Between Unitopia and Zerostan?
Two countries, Unitopia (denoted by ones) and Zerostan (denoted by zeros) are engaged in a long-standing dispute: how long is th...

9 jours il y a

A résolu


Shifting vertically a function's graph
Given a real function, f, by n input-output pairs, consider a translation in the up-down direction given by an amount k. For a ...

10 jours il y a

A résolu


Scaling vertically functions
Given a real function by the 1×n array, x, of inputs and the 1×n array, y, of outputs, consider shifting vertically its graph by...

11 jours il y a

A résolu


Translating parabola by its vertex to the origin
Given a quadratic polynomial, p(x) = ax^2 + bx + c (a ~= 0), represented by the vector [a b c], consider the translation of the ...

12 jours il y a

A résolu


Convert a diagonal representation of a matrix element to linear index or subscripts
Elements in matrices in MATLAB can be retrieved by linear index or subscripts. For example, the 1 in the matrix below has a line...

12 jours il y a

A résolu


FEN to Chess Board
Note: This problem is the reverse, or complement, of Problem 61144 - FEN Chess Notation. Given a FEN (Forsyth-Edwards Notation)...

12 jours il y a

A résolu


Chrono Matrix: Reconstructing the Time Portal
Your time-travel scanner has captured fragments of a portal matrix scattered across eras. Each fragment contains partial informa...

15 jours il y a

A résolu


Container With Most Water
You are given an integer array height . There are vertical lines drawn such that the two endpoints of the ith line are (i, 1) an...

15 jours il y a

A résolu


Pascal's Pyramid - A Variation with an Arial View
Let's create a matrix of size N x N containing a Pascal's Triangle in each quadrant that diverges from the centre to form an ari...

16 jours il y a

A résolu


finding vector pair with min angle between them
given a matrix with more than one row , compare row vectors of the given matrix and find the pair with the minumum angle between...

17 jours il y a

A résolu


Pascal's Triangle
Create a matrix of size N x N containing a Pascal's Triangle that starts from the upper left corner according to the test cases ...

18 jours il y a

A résolu


The Case of the Missing Prototype – Match the Footprints Found in the Lab to the Suspects’ Shoe Sizes
The dust on the Innovation Lab floor reveals several footprints.You’ve measured their shoe sizes and noted them in a vector size...

19 jours il y a

A résolu


The Case of the Missing Prototype – Detect Tampered Sensor Readings from the Stolen Device’s Data Logs
You’ve recovered partial sensor data from the stolen prototype.Each reading is stored in a numeric vector data, but something se...

19 jours il y a

A résolu


The Case of the Missing Prototype – Calculate the Car’s Average Speed Between GPS Readings to Trace the Escape Route
Using GPS data, you’ve obtained the total distance (in meters) traveled by the suspect’s car at equal time intervals.These readi...

19 jours il y a

A résolu


Don't Include a Five
Given a vector A, return vector B with all 5s replaced with 0s.

19 jours il y a

A résolu


Don't Include a Five (Part Two)
Given a vector A with at least one non-five, return vector B, with all fives excluded (not replaced by zeros).

19 jours il y a

A résolu


The Five Infection (Boss Level)
Given a 3x3 matrix A, replace: every value that is equal to five every value that is directly adjacent to a five with zero in...

19 jours il y a

A résolu


Compute frequency factors for the normal distribution
In frequency analysis in hydrology, the streamflow corresponding to a specified exceedance probability (or return period ) can...

19 jours il y a

A résolu


Compute the area of a lune
Write a function to compute the area of the shaded moon-shaped region in the figure below—that is, the area of a smaller circle ...

19 jours il y a

A résolu


Compute the total length of lines between all vertices of a regular polygon
Write a function to compute the total length of between all vertices of a regular polygon inscribed in a unit circle. For exampl...

19 jours il y a

A résolu


nxn matrix with elements from 1:n^2
input n defines the dimension of a square matrix to be filled from 1 to n^2 with 1 in upper left corner and n^2 in bottom right...

19 jours il y a

A résolu


Bullseye Matrix with Zeros
Inspired by Problem 18, create a bullseye matrix with the addition of padding equal to 0 between concentric rings. Matrices are ...

19 jours il y a

A résolu


Creating a matrix by taking shifted copies of a given vector v as columns
This problem is the same as the problem 761 except that here we are testing it for any given vector ; a row or column vector. Th...

20 jours il y a

A résolu


Find the surface area of a cone.
For instance, Given r (radius) = 3, and s (slant height) = 5: surface area should be 94.

20 jours il y a

A résolu


Collect a set of candy wrappers
This past Halloween, the siblings Matilda and Labrun amused (and sometimes confused) their many neighbors with their costumes in...

21 jours il y a

Charger plus