
freddy alexander rodriguez torres
Statistics
RANK
73,375
of 277,930
REPUTATION
0
CONTRIBUTIONS
1 Question
1 Answer
ANSWER ACCEPTANCE
100.0%
VOTES RECEIVED
0
RANK
of 18,801
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 129,143
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
Write a function called valid_date that takes three positive integer scalar inputs year, month, day. If these three represent a valid date, return a logical true, otherwise false. The name of the output argument is valid. If any of the inputs is not
function valid=valid_date(y,m,d) k=y/4; j=y/400; i=y/100; if ~isscalar(y) || ~isscalar(m) || ~isscalar(d) || y~=fix(y) || m~...
2 years ago | 0
Question
solving equation with a sqrt inside a integral
I've been trying to solve a equation that use a integral, the variable that I want to solve is the lower limit of the integral b...
2 years ago | 1 answer | 0