Excel Lambda Recursion 2023-09-15

Поділитися
Вставка
  • Опубліковано 5 лис 2024

КОМЕНТАРІ • 3

  • @PM-pt9rg
    @PM-pt9rg Рік тому +2

    Very nice video, extremely helpful in understanding the background processes behind lambda recursion. Please do make more videos like this that address lambda recursion with mathematical examples like this.

  • @hakandemir3340
    @hakandemir3340 6 місяців тому

    Thank you for the nice video

  • @LeonardBrown-ss9zx
    @LeonardBrown-ss9zx  Рік тому +3

    Improper Fraction to Mixed Fraction LAMBDA
    LAMBDA below should work on OFFICE 365 and GOOGLE Sheets.
    =LAMBDA(inumerator, idivisor,
    if( idivisor = 0, "Error divisor is Zero",
    let(
    _100,"Improper fraction to Mixed Fraction Calculator",
    whole_part_l,
    lambda( num, F_LL , if( num < idivisor, 0, F_LL(num-idivisor,F_LL)+1 ) ),
    remainder_part_l,
    lambda( num, F_LL , if( num < idivisor, num, F_LL(num-idivisor,F_LL) ) ),
    result, inumerator &"/"& idivisor &" = "&
    whole_part_l( inumerator, whole_part_l) & " + " &
    remainder_part_l( inumerator, remainder_part_l) & "/"& idivisor,
    result
    )
    )
    )(109,10)