photo

Emirhan Bilgiç


Last seen: mehr als ein Jahr vor Aktiv seit 2020

Followers: 0   Following: 0

Statistik

  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Frage


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

fast 3 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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

etwa 4 Jahre vor | 1 Antwort | 0

1

Antwort