I'm trying to vectorize my for loop, what would be the best method?

조회 수: 1 (최근 30일)
BAILEY MCMASTER
BAILEY MCMASTER 2023년 9월 6일
답변: Matt J 2023년 9월 6일
clear all
Linearparams=[3.5,1.0];
nonLinearParams=[5];
timevals=[0:.01:4.99];
n=length(timevals)
for i=1:n
yvals(i)=Linearparams(1)*timevals(i)+Linearparams(2)+sin(nonLinearParams*timevals(i));
end

채택된 답변

Matt J
Matt J 2023년 9월 6일
yvals=Linearparams(1)*timevals+Linearparams(2)+sin(nonLinearParams*timevals);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by