1. 12.
    0
    @8, 9 sizi vurmak istedim şu an.
    ···
  2. 11.
    +1
    @7 format at
    ···
  3. 10.
    0
    nası duzeltecem? lütfeeeeeeeeeeen
    ···
  4. 9.
    0
    gibtir git bunun için geldiysen
    ···
  5. 8.
    0
    normdist excel'de bi formül, türkçesi normdağ.
    ···
  6. 7.
    0
    @5 kanka seni allah gonderdi.

    aynen oyle, normal dist yaptırmaya calisiyorum ama tanımıyo komutu bu c++

    niyeeeeeeee?
    ···
  7. 6.
    0
    yerel dizinde bulunması gereken kütüphane
    ···
  8. 5.
    0
    normal distribution komutları içeren header dosyası değil mi la.
    ···
  9. 4.
    +1
    bi sey sokup cikicam
    ···
  10. 3.
    0
    olm sırf bunu sormaya mail aldım kullanıcı adı aldım bi bakın laaaaan
    ···
  11. 2.
    0
    aloooooooooooooo
    ···
  12. 1.
    0
    kankalar su koda bi bakin sevabina:

    3. include <cmath> // mathematical library
    4. include "normdist.h" // this defines the normal distribution

    double option_price_call_black_scholes( double S, // spot price
    double X, // Strike (exercise) price,
    double r, // interest rate
    double sigma,
    double time)
    {
    double time_sqrt = sqrt(time);
    double d1 = (log(S/X)+r*time)/(sigma*time_sqrt) + 0.5*sigma*time_sqrt;
    double d2 = d1-(sigma*time_sqrt);
    double c = S * N(d1) - X * exp(-r*time) * N(d2);
    return c;
    };

    bu normdist calismiyor nedir bu normdist ak?
    ···