how to vectrorized this code?

조회 수: 1 (최근 30일)
Siddhesh Karbhari
Siddhesh Karbhari 2017년 10월 9일
편집: Jan 2017년 10월 9일
close all
clear all
clc
tic;
i=1;
for k=1:1:10;
for a=1:1:10;
nump(i,:) =k*a;
denp(i,:) =[1 a 0];
i=i+1;
end
end

채택된 답변

Jan
Jan 2017년 10월 9일
편집: Jan 2017년 10월 9일
nump = (1:10) .* (1:10).'; % Auto-Expand >= Matlab R2016b
For older Matlab versions:
nump = bsxfun(@times, (1:10), (1:10).');
denp from KL's solution is perfect already. This is 2 microseconds(!) faster on my computer, but less nice:
denp = zeros(100, 3);
denp(:, 1) = 1;
denp(:, 2) = repmat((1:10)', 10, 1);

추가 답변 (1개)

KL
KL 2017년 10월 9일
nump = cell2mat(arrayfun(@(x) x:x:x*10,1:10,'uni',0))';
denp = [ones(100,1) repmat((1:10)',10,1), zeros(100,1)];
  댓글 수: 1
Jan
Jan 2017년 10월 9일
+1 for the optimal creation of denp.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Programming에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by