Community Profile

photo

Emirhan Bilgiç


Last seen: 11 months ago Active since 2020

Followers: 0   Following: 0

Statistics

  • First Answer

View badges

Feeds

View by

Question


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 ago | 1 answer | 0

1

answer

Question


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 ...

3 years ago | 1 answer | 0

1

answer