photo

Ryan Shone


Active since 2015

Followers: 0   Following: 0

Statistics

All
MATLAB Answers

3 Questions
0 Answers

Cody

0 Problems
7 Solutions

RANK
237,105
of 301,159

REPUTATION
0

CONTRIBUTIONS
3 Questions
0 Answers

ANSWER ACCEPTANCE
33.33%

VOTES RECEIVED
0

RANK
 of 21,182

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
48,668
of 173,105

CONTRIBUTIONS
0 Problems
7 Solutions

SCORE
80

NUMBER OF BADGES
1

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Discussions

AVERAGE NO. OF LIKES

  • Thankful Level 1
  • Solver

View badges

Feeds

View by

Question


How to import .dat data
The data is: # Trace: no # Gravitation: no # Seed: 1539094448 # Param: alpha=0.15 # type: array_2d(700, 700) ...

7 years ago | 1 answer | 0

1

answer

Question


How do I find the start and end of dips in data
Hi, hopefully this makes some sense. I have averaged my data of a few hundred dips to one set. <</matlabcentral/answers/up...

9 years ago | 0 answers | 0

0

answers

Question


How can I obtain specific peaks.
This isn't quite as simple as the question makes it sound. I have a graph showing resonance of a sample. <</matlabcentral/ans...

9 years ago | 1 answer | 0

1

answer

Solved


Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

11 years ago

Solved


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...

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

11 years ago

Solved


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

11 years ago

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

11 years ago

Solved


Is my wife right?
Regardless of input, output the string 'yes'.

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

11 years ago