freddy alexander rodriguez torres
Followers: 0 Following: 0
Feeds
提问
Add lines of text to CNC programming code
Hello, I am trying to generate a code in which after a tool change (depending on the tool) Matlab puts a new line of code with a...
7 months 前 | 1 个回答 | 0
1
个回答已回答
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~...
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~...
3 years 前 | 0
提问
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...
4 years 前 | 1 个回答 | 0