ayyappa rudrasimha yedida - MATLAB Central
photo

ayyappa rudrasimha yedida


Last seen: 2 months ago Active since 2016

Followers: 0   Following: 0

Message

M.Tech

Statistics

All
CodyMATLAB AnswersFile ExchangeFrom 09/16 to 04/25Use left and right arrows to move selectionFrom 09/16Use left and right arrows to move left selectionTo 04/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

5 Questions
6 Answers

File Exchange

3 Files

Cody

0 Problems
13 Solutions

RANK
1,622
of 298,109

REPUTATION
42

CONTRIBUTIONS
5 Questions
6 Answers

ANSWER ACCEPTANCE
0.0%

VOTES RECEIVED
13

RANK
4,013 of 20,533

REPUTATION
363

AVERAGE RATING
4.70

CONTRIBUTIONS
3 Files

DOWNLOADS
24

ALL TIME DOWNLOADS
2863

RANK
37,312
of 160,374

CONTRIBUTIONS
0 Problems
13 Solutions

SCORE
110

NUMBER OF BADGES
2

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • 5-Star Galaxy Level 4
  • Personal Best Downloads Level 2
  • First Submission
  • Knowledgeable Level 2
  • First Answer
  • Triathlon Participant
  • Scavenger Finisher
  • Solver
  • Commenter

View badges

Feeds

View by

Solved


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

8 years ago

Solved


how to create zero square matrix with given order?
y-Zero square matrix with given input order x.

8 years ago

Solved


how to find unique values in matrix
how to find unique values in matrix for give x matrix.

8 years ago

Solved


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

8 years ago

Solved


Create a row array using double colon operator
Create a row array from 9 to 1, using the double colon operator.

8 years ago

Solved


Simple equation: Annual salary
Given an hourly wage, compute an annual salary by multiplying the wage times 40 and times 50, because salary = wage x 40 hours/w...

8 years ago

Solved


Circle area using pi
Given a circle's radius, compute the circle's area. Use the built-in mathematical constant pi.

8 years ago

Solved


Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.

8 years ago

Solved


radius of a spherical planet
you just measured its surface area, that is the input.

8 years ago

Solved


Weighted average
Given two lists of numbers, determine the weighted average. Example [1 2 3] and [10 15 20] should result in 33.333...

8 years ago

Solved


Basic commands - Least common multiple
Make a function which will return least common multiple of "a" and "b" Example: a=8; b=6; y=24;

8 years ago

Solved


Change string to number
Change given string to number. (hint: there is already function) Changing from ['1234'] to [1234] is one of example

8 years ago

Solved


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

8 years ago