Filter löschen
Filter löschen

how to use sum?

3 Ansichten (letzte 30 Tage)
George
George am 18 Feb. 2013
I am trying to use sum but with no success!
For example:
n=1:20;
sum(n./2.^n)
or:
n=20;
k=1:n;
sum(k);
but neither works!Am I missing sth here?
Thanks!
  1 Kommentar
Jan
Jan am 18 Feb. 2013
"Neither works" is not a good description of the problem. Better post the error message of explain the difference between the results and your expectations.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Azzi Abdelmalek
Azzi Abdelmalek am 18 Feb. 2013
Bearbeitet: Azzi Abdelmalek am 18 Feb. 2013
%They both work fine
%What is your error message?
%Try
clear sum
n=1:20;
sum(n./2.^n)
Mybe sum is used as a variable in your code
  2 Kommentare
George
George am 18 Feb. 2013
Ok!It wanted clear all!Maybe it messed up with something!!And I was going crazy!
Jan
Jan am 18 Feb. 2013
No, Georg, not clear all, but clear sum. See Answers: avoid clear all. But instead of clearing variables, it is much better to avoid using the names of built-in functions as names of variables.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by