photo

Justin Whetten


自 2016 起处于活动状态

Followers: 0   Following: 0

统计学

All
  • First Answer
  • Solver

查看徽章

Feeds

排序方式:

已回答
Write a function called halfsum that takes as input an at most two-dimensional array A and computes the sum of the elements of A that are in the lower right triangular part of A
For anyone who might be struggling still with this function sum=halfsum(A); sum = 0; [row,col] = size(A); ...

7 years 前 | 0

已解决


Project Euler: Problem 1, Multiples of 3 and 5
If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23...

7 years 前