changing a number in calculation with if else or anything possible
    2 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    amir khalighi
 el 16 de Abr. de 2018
  
    
    
    
    
    Comentada: amir khalighi
 el 19 de Abr. de 2018
            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
Respuesta aceptada
  KSSV
      
      
 el 19 de Abr. de 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')
          Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!