photo

Subramanian Mahadevan


2016년부터 활동

Followers: 0   Following: 0

통계

MATLAB Answers

4 질문
0 답변

순위
234,138
of 300,871

평판
0

참여
4 질문
0 답변

답변 채택
50.0%

획득한 표
0

순위
 of 21,100

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위

of 171,460

참여
0 문제
0 답안

점수
0

배지 수
0

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Thankful Level 1

배지 보기

Feeds

보기 기준

질문


c0 and x are scalars, c - vector, and p - scalar. If c is [ ], then p = c0. If c is a scalar, then p = c0 + c*x . Else, p =
function [p] = poly_val(c0,c,x) N = length(c); n=1:1:N; if (N<=1) if(isempty(c)) p=c0; else p= c0...

대략 9년 전 | 답변 수: 7 | 0

7

답변

질문


hello people. How do I compute the difference in dates of the same year without using datenum or any other built in function
I need to compute the difference in days between any two dates of the same year.How do I go about it, without using built in fun...

대략 9년 전 | 답변 수: 0 | 0

0

답변

질문


Could someone please point out the error in my code?
Write a function called income that takes two row vectors of the same length as input arguments. The first vector, rate contains...

대략 9년 전 | 답변 수: 1 | 0

1

답변

질문


how can i genaralise this code for any m*n matrix?{the original question is to sum all the elements in the perimeter of a given matrix}?
This was my code;which works good for a 3*3 matrix. function sum1 = peri_sum(A); q=0;r=0;s=0;t=0;u=0;v=0;w=0; A=[1:3;...

9년 초과 전 | 답변 수: 2 | 0

2

답변