assign value and plot outside the loop
2 次查看(过去 30 天)
显示 更早的评论
function [call_value]=different_k(S, r, sigma, t, steps)
call_value=zeros(226,1);
for i=75:300
call_value(i-74,1) =european_call_binomial(S, i, r, sigma, t, steps);
%plot(call_value(i-74,1),i);
end
x=75:1:300;
y=call_value(1:1,1);
plot(x,y)
I 'm trying to assign the value to call_value. However, the result says call_value has not been defined. Did I made a in call_value(i-74,1)? how should I fix this ?
0 个评论
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Line Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!