changing a number in calculation with if else or anything possible

1 view (last 30 days)
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

Accepted Answer

KSSV
KSSV on 19 Apr 2018
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')

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!