photo

Pradheepa


2025년부터 활동

Followers: 0   Following: 6

Programming Languages:
MATLAB
Spoken Languages:
English
Pronouns:
She/her
Professional Interests:
Systems Engineering, Requirements Toolbox, System Composer, Control Systems, Chassis Systems

통계

Cody

52 문제
404 답안

순위
N/A
of 302,183

평판
N/A

참여
0 질문
0 답변

답변 채택
0.00%

획득한 표
0

순위
 of 21,607

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위
209
of 179,876

참여
52 문제
404 답안

점수
7,233

배지 수
44

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Cody Problems in Japanese Master
  • Quiz Master
  • Curator
  • Puzzler
  • Speed Demon
  • Creator
  • Commenter
  • Draw Letters
  • Promoter
  • Solver

배지 보기

Feeds

보기 기준

문제를 풀었습니다


Index of a Rational number
The set of real numbers are infinite. They are so many that real numbers can't even be enumerated. However, unlike real numbers ...

1일 전

문제를 풀었습니다


Tridiagonal
Return an n-by-n matrix that has a, b, c as the subdiagonal, main diagonal, and superdiagonal entries in the matrix. Example ...

2일 전

문제를 풀었습니다


Index one element in each vector of an array along a given dimension
Functions like min and max can return in their second output argument the index of the element in each vector along a particular...

2일 전

문제를 풀었습니다


Find the maximum two numbers of every column of a matrix
Find the maximum two numbers of every column of a matrix. Example: If we input a matrix A = [ 1 2 4 6 0 3 ...

3일 전

문제를 풀었습니다


Finding neighbors of [-1:1] in a matrix....
Hello All! Well I found this one fun to figure out, all you have to do is make a matrix of 1's or 0's (true or false) that sh...

4일 전

문제를 풀었습니다


How unique?
Sometimes, when we check unique entries of vector we would like to know how many times each value occurs. Given vector of num...

5일 전

문제를 풀었습니다


Another colon problem
This is simple problem based on problems 555, 801, 1118, etc. Create an index vector from two input vectors. Example: ...

8일 전

문제를 풀었습니다


Sum of odd numbers in a matrix
Find the sum of all the odd numbers in a matrix. Example x = [2 3 5 7 1 4 11] y = 27

8일 전

문제를 풀었습니다


Find the index of n in magic(n)
If input n=5, then magic(n) is 17 24 1 8 15 23 5 7 14 16 4 6 13 20 22...

9일 전

문제를 풀었습니다


Replace pattern 0 1 0 and 1 0 1
Find and replace a pattern in a row of zeroes and ones. * Find 1 0 1 and replace it with 1 1 1 * Find 0 1 0 and replace it w...

9일 전

문제를 풀었습니다


Largest territory
Determine whose territory is largest. If there are multiple numbers tied for the largest territory, return the smallest number. ...

10일 전

문제를 풀었습니다


counting groups!
This problem is about counting groups. Example If you have x: x = [0.8 0.8 0.8 0.3 0.3 0.4 0.5 0.6 0.6 0.9] then a...

10일 전

문제를 풀었습니다


Three...is a magic number.
Yes it is... It's a magic number... To help you get rid of that earworm, here's a new Cody problem. You are given a squar...

16일 전

문제를 풀었습니다


Time Expansion
How can you slow down any discrete-time signal? Example Input original signal x. x = [1 2 3 -1 -2 -5 -4] We want t...

16일 전

문제를 풀었습니다


Back to basics - mean of corner elements of a matrix
Calculate the mean of corner elements of a matrix. e.g. a=[1 2 3; 4 5 6; 7 8 9;] Mean = (1+3+7+9)/4 = 5

18일 전

문제를 풀었습니다


expand intervals
You're given a row vector of an even number of monotonically increasing integers. Each pair of consecutive integers is the lower...

18일 전

문제를 풀었습니다


expand intervals vol.3
This is the next problem after <http://www.mathworks.co.uk/matlabcentral/cody/problems/2528 2528> and <http://www.mathworks.co.u...

19일 전

문제


Check Bidirectional Requirement Traceability
Bidirectional traceability ensures that a relationship recorded from a requirement to an architecture element is also reflected ...

25일 전 | 0 | 솔버 수: 14

문제


Calculate Architecture Option Score
System architects often compare multiple architecture candidates against several evaluation criteria. Given a matrix containing...

25일 전 | 0 | 솔버 수: 14

문제


Evaluate Requirement Test Results
During system verification, measured values are compared against requirement limits. Given a set of measured results and corres...

25일 전 | 0 | 솔버 수: 14

문제


Calculate Verification Coverage
Before a system can be verified, each applicable requirement should have an associated verification activity. Given the total n...

25일 전 | 0 | 솔버 수: 14

문제


Calculate Availability of a Redundant Pair
Redundancy can improve system availability by allowing the system to continue operating when one of two independent components f...

25일 전 | 0 | 솔버 수: 13

문제


Calculate Series System Availability
Consider a system in which every component must operate successfully for the complete system to function. Given the individual ...

25일 전 | 0 | 솔버 수: 13

문제


Count System Architecture Interfaces
An architecture can be represented using a connectivity matrix. Each row and column represents a system element, while a value o...

25일 전 | 0 | 솔버 수: 15

문제


Count Active Architecture Elements
A system architecture may contain several elements, but not all elements are active in a particular configuration. Given a logi...

25일 전 | 0 | 솔버 수: 14

문제


Calculate Requirement Traceability Coverage
Traceability helps ensure that system requirements are connected to downstream engineering artifacts such as architecture elemen...

25일 전 | 0 | 솔버 수: 14

문제


Find Unallocated Requirements
During system development, requirements are allocated to system elements such as sensors, controllers, actuators, or software co...

25일 전 | 0 | 솔버 수: 17

문제


Calculate Requirement Margin
Engineering requirements often specify a limit, while the actual system performance may be better or worse than that limit. Giv...

26일 전 | 0 | 솔버 수: 21

문제


Check Requirement Compliance
A system requirement specifies a maximum allowable value for a system parameter.Given a set of measured values and the correspon...

26일 전 | 1 | 솔버 수: 21

문제를 풀었습니다


compress sequence into intervals
You're given a row vector of monotonically increasing integers most of which are consecutive. Find the upper and lower bounds of...

대략 1개월 전

더 보기