photo

Emirhan Bilgiç


Last seen: 1 year 前 自 2020 起处于活动状态

Followers: 0   Following: 0

统计学

  • First Answer

查看徽章

Feeds

排序方式:

提问


MATLAB uses 90%+ of CPU
Hello, MATLAB on my PC uses 90%+ of the CPU. Even if my PC is kind of new brand. My PC has the CPU of Amd Ryzen 7 3750H. And als...

2 years 前 | 1 个回答 | 0

1

个回答

提问


VALID_DATE FUNCTION PROBLEM : 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...
function [valid] = valid_date(y,m,d) if ~isscalar(y) || ~isscalar(m) || ~isscalar(d) valid= false; end if m > 12 ...

4 years 前 | 1 个回答 | 0

1

个回答