photo

Dyuman Joshi


Last seen: Today Aktiv seit 2012

Followers: 4   Following: 4

Nachricht

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

Statistik

All
MATLAB Answers

10 Fragen
1.245 Antworten

File Exchange

1 Datei

Cody

47 Probleme
4249 Lösungen

Discussions

1 Discussion

RANG
45
of 301.287

REPUTATION
4.358

BEITRÄGE
10 Fragen
1.245 Antworten

ANTWORTZUSTIMMUNG
70.0%

ERHALTENE STIMMEN
655

RANG
8.173 of 21.220

REPUTATION
109

DURCHSCHNITTLICHE BEWERTUNG
5.00

BEITRÄGE
1 Datei

DOWNLOADS
6

ALL TIME DOWNLOADS
959

RANG
9
of 173.814

BEITRÄGE
47 Probleme
4249 Lösungen

PUNKTESTAND
48.910

ANZAHL DER ABZEICHEN
78

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
1 Discussion

DURCHSCHNITTLICHE ANZAHL DER 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

Abzeichen anzeigen

Feeds

Gelöst


Turn year differences into "s score and y years ago"
President Lincoln opened his now-legendary Gettysburg Address with the famous words "Four score and seven years ago...". Given t...

etwa 6 Stunden vor

Gelöst


Sum all elements of a vector or matrix without using some built in functions
Write a function that computes the sum of all elements of the input array v without using the following built-in function: sum,...

7 Tage vor

Gelöst


Compute a sum involving the zeta function
Write a function to compute the sum for , where is the zeta function, the subject of Cody Problems 45939, 45988, and 45997.

9 Tage vor

Gelöst


Compute the area of a Q
A figure resembling a Q (as in “quadrature”) is constructed in the following way: A right triangle is drawn with the left vertex...

9 Tage vor

Gelöst


Compute a nested cube root
Consider the quantity . Write a function to compute without using loops or recursion.

9 Tage vor

Gelöst


Sum all elements of a vector or matrix without using sum()
Write a function that computes the sum of all elements of the input array v without using the built-in sum function. The input ...

9 Tage vor

Gelöst


Compute the Euclidean Distance Between Two N-Dimensional Vectors
Write a function that computes the Euclidean distance between two N-dimensional vectors. Given two input vectors x and z of equ...

10 Tage vor

Gelöst


Determine Matrix Dimensions Without Using some built-in MATLAB functions, version 2
Write a function that takes a 2D matrix/1D vector x as input and returns a row vector containing the number of rows and the numb...

10 Tage vor

Gelöst


Determine Matrix Dimensions Without Using some built-in MATLAB functions
Write a function that takes a 2D matrix/1D vector x as input and returns a row vector containing the number of rows and the numb...

13 Tage vor

Gelöst


Is it Possible? ( Easy )
In the first part of series, we simplify the problem. Given two jugs with capacities A and B, and a target amount T, determine i...

16 Tage vor

Gelöst


Built-out FFTShift
The task in hand is to replicate the built-in function - fftshift (with single input), but without using the function. However,...

17 Tage vor

Gelöst


[Master Regular Expression] Vowel-Consonant Score
You are given a string s consisting of lowercase English letters, spaces, and digits. Let v be the number of vowels in s and c ...

17 Tage vor

Gelöst


[Master Regular Expression] Strong Password Checker II
A password is said to be strong if it satisfies all the following criteria: It has at least 8 characters. It contains at l...

17 Tage vor

Gelöst


Spiral Mandala
Generate a clockwise spiral pattern using 1s in an N×N matrix to create an intricate mandala effect. e.g. N = 5; y_correct...

etwa ein Monat vor

Gelöst


Concentric Squares Mandala
Generate concentric square rings of alternating 1s and 0s to form a layered mandala-style matrix. e.g. N = 5; 1 1 1 1 1;...

etwa ein Monat vor

Gelöst


Circular Ring Approximation Mandala
Generate a matrix that approximates a circular ring using distance-based thresholding , a visually rich mandala-inspired challen...

etwa ein Monat vor

Gelöst


Hollow Diamond Pattern
Create an N×N matrix that forms a hollow diamond shape using 1s, leaving the interior empty. This challenge emphasizes boundary ...

etwa ein Monat vor

Gelöst


Filled Diamond Pattern
Create an N×N binary matrix that forms a filled diamond shape centered in the matrix. The diamond expands symmetrically toward t...

etwa ein Monat vor

Gelöst


Diagonal Cross Mandala
Generate an N×N matrix with diagonals highlighted to form an artistic X-shaped mandala pattern. e.g. N = 5; 1 0 0...

etwa ein Monat vor

Gelöst


Starburst Mandala
Create a mandala starburst using diagonal and orthogonal symmetry in a matrix.

etwa ein Monat vor

Gelöst


Compute wheel slip ratio during braking.
During braking, a difference develops between the vehicle’s forward speed and the rotational speed of its wheels. This differenc...

etwa ein Monat vor

Gelöst


Plus Cross Mandala
Create a symmetrical plus (+) shaped pattern centered in an N×N matrix.

etwa ein Monat vor

Gelöst


Vertical Mirror Mandala
Create a symmetric left-right mirrored pattern in an N×N matrix to emulate mandala reflection symmetry. e.g. N = 5; ...

etwa ein Monat vor

Gelöst


Hourglass Mandala
Generate an hourglass shape using matrix geometry and symmetry. e.g. N = 5; 1 1 1 1 1; 0 1 1 1 0; ...

etwa ein Monat vor

Gelöst


Estimate dynamic load transfer to front axle during braking.
During braking, load shifts from the rear axle to the front axle. Given mass, deceleration, center of gravity height, and wheelb...

etwa ein Monat vor

Gelöst


Compute optimal front–rear brake force distribution.
Modern braking systems dynamically distribute braking forces between front and rear axles to maintain stability, reduce stopping...

etwa ein Monat vor

Gelöst


Compute vehicle stopping distance using initial speed and constant deceleration.
Given vehicle speed v (m/s) and constant deceleration a (m/s²), compute stopping distance Remember: d = v² / (2a)

etwa ein Monat vor

Gelöst


Compute the required brake torque at wheel to stop the car
Brake torque defines how effectively braking force translates into wheel deceleration. Given braking force and wheel radius, det...

etwa ein Monat vor

Gelöst


Compute braking force using vehicle mass and acceleration.
Compute braking force required to stop a vehicle of mass 'm' and with acceleration 'a' Remember: F = m × a.

etwa ein Monat vor

Gelöst


Compute optimal regenerative and friction brake torque blending.
Electric and hybrid vehicles combine regenerative braking with traditional friction braking to maximize energy recovery while en...

etwa ein Monat vor

Mehr laden