photo

Mert Yiyit


Actif depuis 2018

Followers: 0   Following: 0

Statistiques

  • First Answer

Afficher les badges

Feeds

Afficher par

Réponse apportée
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 ...

plus de 5 ans il y a | 0