photo

Mary Jeppson


Active since 2016

Followers: 0   Following: 0

Statistics

All
MATLAB Answers

7 Questions
0 Answers

Cody

0 Problems
4 Solutions

RANK
38 087
of 300 381

REPUTATION
1

CONTRIBUTIONS
7 Questions
0 Answers

ANSWER ACCEPTANCE
71.43%

VOTES RECEIVED
1

RANK
 of 20 941

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
63 899
of 168 477

CONTRIBUTIONS
0 Problems
4 Solutions

SCORE
50

NUMBER OF BADGES
1

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Thankful Level 3
  • Solver

View badges

Feeds

View by

Question


While loop to calculate sine
I have written this code that settles on an incorrect value and I can't see what's wrong. Can anyone show me? x = pi/4; ...

nästan 9 år ago | 1 answer | 0

1

answer

Solved


Add two numbers
Given a and b, return the sum a+b in c.

nästan 9 år 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 ...

nästan 9 år 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...

nästan 9 år 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:...

nästan 9 år ago

Question


Nested loops to estimate cos(pi/4)
I have written this code that is giving me an error: true = cos(pi/4); n = 2; es = .5^(2-n); x = pi/4; ea = 1; est = ...

nästan 9 år ago | 2 answers | 0

2

answers

Question


Convert base 2 to base 10 using loop
I've written this loop, but it produces a value of 128 for every number in the mult array instead of going from 128 to 64 to 32 ...

nästan 9 år ago | 1 answer | 0

1

answer

Question


maclaurin series code problem
I keep getting "index exceeds matrix dimensions" but i don't see a problem. Can anyone see why this isn't working? n = 4; ...

mer än 9 år ago | 1 answer | 0

1

answer

Question


matlab code for Euler's method
I have written this code for my class, but keep getting 'index exceeds matrix dimensions' can anyone tell me what's wrong with i...

mer än 9 år ago | 1 answer | 0

1

answer

Question


Problem with Fibonacci For loop
Here is my code: f(1) = input('What is the first number of the sequence?') f(2) = input('What is the second number?') ...

mer än 9 år ago | 0 answers | 1

0

answers

Question


Problem adding components of a vector using a while loop
Can anyone tell me what's wrong with this code? x = [1 23 43 72 87 56 98 33]; b = 0; k = 1; while k<=length(x) ...

mer än 9 år ago | 2 answers | 0

2

answers