Umur Ulas Harman - MATLAB Cody - MATLAB Central

Umur Ulas Harman

2951
Rank
9
Badges
1130
Score
51 – 100 of 112

Umur Ulas Harman submitted a Comment to Solution 2626789

function z = in_prod(x,y) if size(x,2)==size(y,1) z=x*y else z = "The inner dimensions are " + size(x,2) + " and " + size(y,1) + ". Matrix multiplication is not possible"; end end

on 29 Jun 2020

Umur Ulas Harman received Community Group Solver badge for Basics on Vectors

on 25 Jun 2020

Umur Ulas Harman submitted a Comment to Solution 1936853

function y = checkvector(x) y = isvector(x); end

on 25 Jun 2020

Umur Ulas Harman submitted a Comment to Solution 1837622

function y = your_fcn_name(x) y = max(max(x)); end

on 25 Jun 2020

Umur Ulas Harman received Introduction to MATLAB Master badge

on 25 Jun 2020

Umur Ulas Harman submitted a Comment to Solution 1640037

function m = timestables(n) y(1,1:n)=1:n; y(1:n,1)=1:n; for i=2:n for j=2:n y(i,j)=y(1,j)*y(i,1) end end m = y; end

on 25 Jun 2020

Umur Ulas Harman received Commenter badge for Solution 1730215

on 24 Jun 2020

51 – 100 of 112
Go to top of page