changing a number in calculation with if else or anything possible
1 次查看(过去 30 天)
显示 更早的评论
Hi all I wrote a code witch is attached , I calculate profit and then rewrite profit in main excel file(2.xls) I have 2 question: 1- I want to change profit to 'c' amount when it is less than 0 and if if it>=0 then profit=the amount witch we calculated before 2-I want to draw the diagram in excel based on 's'(as X) and 'profit'(as Y) how can I do it? thank you all
采纳的回答
KSSV
2018-4-19
data=xlsread ('2') ; k=data(1) ; c=data(2) ; s_no=length(data(:,2)) ; s=data(2:s_no,2) ; profit=s-k-c ; % Change profit to c when < 0 profit(profit<0) = c ;
plot(s,profit) ; xlabel('s') ; ylabel('profit') ; xlswrite('2',profit,1,'d2')
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!