photo

Mert Yiyit


Active since 2018

Followers: 0   Following: 0

Statistics

  • First Answer

View badges

Feeds

View by

Answered
construct meshgrid matrices without using function meshgrid.
function [A,B] = mgrid(x,y) m = length(x); n = length(y); for i= 1:n for j= 1:m A(i,j) = x(1,j); end end ...

5 years ago | 0