[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: 1 i 2
From: |
slaythemall |
Subject: |
Re: 1 i 2 |
Date: |
Wed, 22 Jun 2016 00:55:00 -0700 (PDT) |
%zadanie 5%
function [Y] = mnozenie_rekurencyjne(m, n)
Y = m;
if (n ~= 1)
Y += mnozenie_rekurencyjne(m, n - 1);
endif
endfunction
--
View this message in context:
http://octave.1599824.n4.nabble.com/1-i-2-tp4677888p4677896.html
Sent from the Octave - General mailing list archive at Nabble.com.
- Re: 1 i 2, slaythemall, 2016/06/22
- Re: 1 i 2, slaythemall, 2016/06/22
- Message not available
- Message not available
- Re: 1 i 2,
slaythemall <=
- Re: 1 i 2, slaythemall, 2016/06/22
- Re: 1 i 2, slaythemall, 2016/06/22
- Re: 1 i 2, slaythemall, 2016/06/22
- Re: 1 i 2, slaythemall, 2016/06/22
- Re: 1 i 2, slaythemall, 2016/06/22
- Re: 1 i 2, slaythemall, 2016/06/22
- Message not available
- Re: 1 i 2, slaythemall, 2016/06/22