Can you vectorize this code?

6 次查看(过去 30 天)
Bryana
Bryana 2014-4-15
编辑: Jan 2014-4-15
This comes from the Matlab book and I'm having the hardest time understanding it.
Chapter 5, problem 35
Vectorize this code:
n = 3;
x = zeros(n);
y = x;
for i = 1:n
x(:,i) = i;
y(i,:) = i;
end
Please help!

采纳的回答

lvn
lvn 2014-4-15
编辑:lvn 2014-4-15
n=3;
x=meshgrid(1:n,1:n);
y=x';

更多回答(1 个)

Azzi Abdelmalek
Azzi Abdelmalek 2014-4-15
编辑:Azzi Abdelmalek 2014-4-15
Use repmat function

类别

Help CenterFile Exchange 中查找有关 Time Series Collections 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by