Community Profile

photo

Nitin Kumar soni


Last seen: 3 years 前 自 2020 起处于活动状态

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
function summa=halfsum(n) [row,col]=size(n); summa=0; for i=1:row for j=1:col if i<=j summa=summa+...

4 years 前 | 0

已解决


Convert from Fahrenheit to Celsius
Given an input vector |F| containing temperature values in Fahrenheit, return an output vector |C| that contains the values in C...

4 years 前

已解决


Calculate Amount of Cake Frosting
Given two input variables |r| and |h|, which stand for the radius and height of a cake, calculate the surface area of the cake y...

4 years 前

已解决


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 前