統計
MATLAB Answers
0 質問
1 回答
ランク
of 172,015
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
回答済み
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 ...
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 ...
約7年 前 | 0
