photo

David Hill


Applied Intuition

Last seen: 2일 전 2017년부터 활동

Followers: 7   Following: 0

메시지

MS - Robotic Systems Development (MRSD) from CMU, BS - Electrical Engineering with minors in Computer Science and Mathematics from BYU.

Programming Languages:
Python, C++, C, Java, Javascript, R, MATLAB, CSS, Arduino
Spoken Languages:
English, Spanish
Professional Interests:
Robotics and Autonomous Systems, SLAM, Motion and Path Planning, Embedded Systems

통계

All
MATLAB Answers

0 질문
2,210 답변

File Exchange

21 파일

Cody

62 문제
5432 답안

Discussions

7 하이라이트

순위
37
of 301,344

평판
5,346

참여
0 질문
2,210 답변

답변 채택
0.00%

획득한 표
625

순위
1,621 of 21,238

평판
1,167

평균 평점
4.60

참여
21 파일

다운로드 수
66

ALL TIME 다운로드 수
9422

순위
4
of 174,044

참여
62 문제
5432 답안

점수
58,628

배지 수
142

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
7 하이라이트

평균 좋아요 수
0

  • MATLAB Mini Hack Participant
  • Treasure Hunt Participant
  • Ace
  • 36 Month Streak
  • Cody Contest 2025 Finishers
  • Indexing III Master
  • Personal Best Downloads Level 4
  • 5-Star Galaxy Level 4
  • Indexing V Master
  • Strings III Master
  • Strings II Master
  • R2016b Feature Challenge Master

배지 보기

Feeds

문제를 풀었습니다


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...

2일 전

문제를 풀었습니다


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

2일 전

문제를 풀었습니다


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

2일 전

문제를 풀었습니다


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...

2일 전

문제를 풀었습니다


Rotating the plane region bounded by two polynomials
Let p and q be n-degree and m-degree polynomials with n >= m >= 1. Consider clockwise rotate the plane region bounded by these t...

2일 전

문제를 풀었습니다


Rotating 2d curve around a vertical axis
Let p be an even-degree polynomial such that has a unique vertex (single global extremum). Consider the counterclockwise rotatio...

3일 전

문제를 풀었습니다


The Generalized N-Jug Water Pouring Problem ( Hard )
Description: You are given N water jugs with maximum capacities specified in a vector C = [ c1, c2, c3,.., c_n]. Initially, all...

3일 전

문제를 풀었습니다


Two Jugs: Minimum Steps ( Medium )
Following the first problem, now you need to find the shortest path. Given two jugs with capacities A and B, find the minimum nu...

3일 전

문제를 풀었습니다


Play Oware with the digits of a number
Oware is a pit and pebble game that consists of two sets of pits or houses filled with pebbles or seeds. During a turn, a player...

4일 전

문제를 풀었습니다


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

4일 전

문제를 풀었습니다


Estimate brake disc temperature rise during braking.
During braking, kinetic energy is converted into thermal energy, causing brake discs to heat up. Excessive temperature rise can ...

4일 전

문제를 풀었습니다


Estimate brake line pressure required for a given force.
Hydraulic braking systems amplify pedal input to generate braking force. Given braking force and piston area, compute the hydrau...

4일 전

문제를 풀었습니다


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...

4일 전

문제를 풀었습니다


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...

4일 전

문제를 풀었습니다


[Master Regular Expression] String To Integer
Implement the myAtoi(string s) function, which converts a string to a 32-bit signed integer. The algorithm for myAtoi(string s)...

5일 전

문제를 풀었습니다


[Master Regular Expression] String Matching in an Array
Given an array of string words, return all strings in words that are a substring of another word. You can return the answer in a...

5일 전

문제를 풀었습니다


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...

5일 전

문제를 풀었습니다


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...

5일 전

문제를 풀었습니다


Determine Matrix Dimensions Without Using size or length
Write a function that takes a matrix A as input and returns a row vector containing the number of rows and the number of columns...

5일 전

문제를 풀었습니다


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...

5일 전

문제를 풀었습니다


Find the nearest admirable number
Cody Problems 1012 and 2544 ask us to determine whether a number is perfect—that is, whether the sum of divisors is equal to ....

5일 전

문제를 풀었습니다


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,...

5일 전

문제를 풀었습니다


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 ...

5일 전

문제를 풀었습니다


Return the product of all elements of a vector or matrix without using built-in functions
Compute the product of all elements of the input array without using the built-in functions prod, ans, or size.

5일 전

문제를 풀었습니다


Simulate full-stop emergency braking scenario.
Emergency braking events demand rapid deceleration to bring the vehicle safely to rest. Given initial vehicle speed and constant...

5일 전

문제를 풀었습니다


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)

5일 전

문제를 풀었습니다


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...

5일 전

문제를 풀었습니다


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...

5일 전

문제를 풀었습니다


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...

5일 전

문제를 풀었습니다


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...

5일 전

더 보기