Community Profile

photo

AYUSH MISHRA


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

统计数据

  • First Answer

查看徽章

Content Feed

排序方式:

已回答
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(A) [m,n]=size(A); summa=0; for i =1:m fprintf('active row :%d \n',i); fo...

4 years 前 | 0

已回答
Area of a triangle
function area=tri_area(b,h,n) area=0.5*b*h*n; end %Here b=base of triangle , h=height of triangle , n=number of triangl...

4 years 前 | 0

已回答
Calculate taxi fare by giving multiple inputs and single output
function fare= taxi_fare(d,t) d=ceil(d); %d=total distance cover by taxi t=ceil(t); %t=total time taken to complete...

4 years 前 | 1