필터 지우기
필터 지우기

changing a number in calculation with if else or anything possible

조회 수: 1 (최근 30일)
amir khalighi
amir khalighi 2018년 4월 16일
댓글: amir khalighi 2018년 4월 19일
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
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!

Translated by