Community Profile

photo

Chris J


Last seen: 1 year ago Active since 2020

Followers: 0   Following: 0

Statistics

All
  • Solver

View badges

Feeds

View by

Answered
Speeding up 2D Finite Difference Matrix
I solved it here is my solution: U = reshape(x, [n,n]); u1 = [zeros([1,n]); diff(U, 1, 1)]; u2 = [zeros(n, 1), diff(U, 1, 2...

4 years ago | 0

| accepted

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

4 years ago

Question


Speeding up 2D Finite Difference Matrix
I have two matrices B and D, where B is a matrix and D is a matrix defined as follows: with , where is the identity matrix an...

4 years ago | 1 answer | 0

1

answer

Solved


find nth even fibonacci number
1st even fibonacci number=2 ; 2nd even fibonacci number=8 ..

4 years ago