Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Code Block
    for i = 1:length(list)
    	if list(i) < 0
    		list(i) = abs(list(i));
    	if list(i) == 0
    		list(i) = 1;
    	end
    end
  2. Code Block
    forelopig_sum_tabell = zeros(1,length(list));
    forelopig_sum_tabell(1) = list(1);
    for i = 2:length(list)
        forelopig_sum_tabell(i) = forelopig_sum_tabell(i-1)+list(i);
    end
    forelopig_sum_tabell

...