[Finance] Arbitrage Free Initial Price of a European option (revised)
지난번 코드에서 출력값을 matrix로 받다보니 for문을 반복할때 index가 지나치게 복잡하기도 하고, matrix의 사이즈를 맞추기 위해서 불필요하게 0이 추가되가 보니까 출력값을 보기가 불편한 느낌이 들어 코드를 전체적으로 수정을 하였다. 이를 위해서 matrix로 받던 출력값을 cell array로 바꾸어, 시간 t에 따라 각각 다른 cell에 출력값이 저장되도록 수정하였다. 수정된 코드는 다음과 같다. function [V0,V,AB] = EuropeanOption(S0,u,d,T,K,r,type) % Compute the arbitrage free initial price of the European call option % by using V0 = E^{p*}[X*] % Make the b..