2023-07-02

MATLAB/simulink

MATLABで等比数列を実装する

MATLABで等比数列は次のように実装すればいい以下コードa=2;r=4;m=10;list=ones(1,m).*a;for n=2:1:m list(1,n)=a*r^(n-1);end