Community Profile

photo

Inho Kim

Last seen: 11 days ago Active since 2019

Statistics

All
  • First Answer
  • Solver

View badges

Content Feed

View by

Answered
Please explain this histogram
Hi Nayoung, Typically errors are calculated with L1 (abs(errors)) or L2 ((errors)^2) norms. Meaning that it cancels out signs f...

4 years ago | 0

Answered
could anyone help me to display the values in the matrix which are greater than the average value for the following code
Hi Jaah, You can use logical index. ind = A > D; % find indices when each value of A is bigger than D AA = A(ind); % extr...

4 years ago | 0

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