How to operate Moving Average on List of Lists?What is in your Mathematica tool bag?Generate a list in Mathematica with a conditional tested for each elementManipulate, checkboxes from the listHow do I find Waldo with Mathematica?How to do Tally-like operation on list based on elements' total in MathematicaDo operations for the second component of each element in a list in MathematicaFast extraction of elements from nested listsHow to smooth a histogram3D in mathematica using moving average?Moving Average plotHow to set an initial moving average value in Java?
First Number to Contain Each Letter
Infinitely many primes
How do I anonymously report the Establishment Clause being broken?
How do I make my fill-in-the-blank exercise more obvious?
Fantasy Military Arms and Armor: the Dwarven Grand Armory
Is it right to use the ideas of non-winning designers in a design contest?
Does the Giant Toad's Swallow acid damage take effect only at the start of its next turn?
Do I need to declare engagement ring bought in UK when flying on holiday to US?
Did the US Climate Reference Network Show No New Warming Since 2005 in the US?
How can I hint that my character isn't real?
How do German speakers decide what should be on the left side of the verb?
What quests do you need to stop at before you make an enemy of a faction for each faction?
These roommates throw strange parties
Is the interior of a Bag of Holding actually an extradimensional space?
What is the name for quantum gates that can be reversed?
What is the purpose of the rotating plate in front of the lock?
Is there a neutral term for people who tend to avoid face-to-face or video/audio communication?
How to reproduce this notation?
Does the Commodore CDTV-CR contain a 65C02 for some reason?
What do English-speaking kids call ice-cream on a stick?
Why are UK MPs allowed to not vote (but it counts as a no)?
Where on Earth is it easiest to survive in the wilderness?
Draw the ☣ (Biohazard Symbol)
Can you create water inside someone's mouth?
How to operate Moving Average on List of Lists?
What is in your Mathematica tool bag?Generate a list in Mathematica with a conditional tested for each elementManipulate, checkboxes from the listHow do I find Waldo with Mathematica?How to do Tally-like operation on list based on elements' total in MathematicaDo operations for the second component of each element in a list in MathematicaFast extraction of elements from nested listsHow to smooth a histogram3D in mathematica using moving average?Moving Average plotHow to set an initial moving average value in Java?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have a list of lists of numbers in mathematica, i.e.
a, b, c, d, e,f, g, h, i, j
and I want to operate MovingAverage on each sublist.
However,
MovingAverage[listOfLists,movingAverageElementChoice,movingAverageElementChoice] simply returns a one dimmensional list, which is the number of elements in the jth column divided by numberOfSublists
I have tried a lot, please help!
I have tried MovingAverage[listOfLists,movingAverageElementChoice]
kineticsData8219K6Averaged =
MovingAverage[kineticsData8219K6, 10, 10, 10, 10, 10, 10];
I want it to output each sublist operated on by MovingAverage
wolfram-mathematica moving-average
add a comment |
I have a list of lists of numbers in mathematica, i.e.
a, b, c, d, e,f, g, h, i, j
and I want to operate MovingAverage on each sublist.
However,
MovingAverage[listOfLists,movingAverageElementChoice,movingAverageElementChoice] simply returns a one dimmensional list, which is the number of elements in the jth column divided by numberOfSublists
I have tried a lot, please help!
I have tried MovingAverage[listOfLists,movingAverageElementChoice]
kineticsData8219K6Averaged =
MovingAverage[kineticsData8219K6, 10, 10, 10, 10, 10, 10];
I want it to output each sublist operated on by MovingAverage
wolfram-mathematica moving-average
add a comment |
I have a list of lists of numbers in mathematica, i.e.
a, b, c, d, e,f, g, h, i, j
and I want to operate MovingAverage on each sublist.
However,
MovingAverage[listOfLists,movingAverageElementChoice,movingAverageElementChoice] simply returns a one dimmensional list, which is the number of elements in the jth column divided by numberOfSublists
I have tried a lot, please help!
I have tried MovingAverage[listOfLists,movingAverageElementChoice]
kineticsData8219K6Averaged =
MovingAverage[kineticsData8219K6, 10, 10, 10, 10, 10, 10];
I want it to output each sublist operated on by MovingAverage
wolfram-mathematica moving-average
I have a list of lists of numbers in mathematica, i.e.
a, b, c, d, e,f, g, h, i, j
and I want to operate MovingAverage on each sublist.
However,
MovingAverage[listOfLists,movingAverageElementChoice,movingAverageElementChoice] simply returns a one dimmensional list, which is the number of elements in the jth column divided by numberOfSublists
I have tried a lot, please help!
I have tried MovingAverage[listOfLists,movingAverageElementChoice]
kineticsData8219K6Averaged =
MovingAverage[kineticsData8219K6, 10, 10, 10, 10, 10, 10];
I want it to output each sublist operated on by MovingAverage
wolfram-mathematica moving-average
wolfram-mathematica moving-average
asked Mar 28 at 4:33
rictuarrictuar
1
1
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You want to do the same thing to every element of a list. You should think of Map
in almost every situation like this. Each of your elements just happen to be lists, but that isn't an issue. So
data=a, b, c, d, e,f, g, h, i, j;
Map[MovingAverage[#, 2]&, data]
gives you the result
(a+b)/2, (b+c)/2, (c+d)/2, (d+e)/2, (f+g)/2, (g+h)/2, (h+i)/2, (i+j)/2
And you can provide additional arguments inside that MovingAverage
to modify the behavior to match what you need. The #
will be replaced one at a time by each list inside data
and the result of each of those MovingAverage
will be put into a list and returned to you.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55390217%2fhow-to-operate-moving-average-on-list-of-lists%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You want to do the same thing to every element of a list. You should think of Map
in almost every situation like this. Each of your elements just happen to be lists, but that isn't an issue. So
data=a, b, c, d, e,f, g, h, i, j;
Map[MovingAverage[#, 2]&, data]
gives you the result
(a+b)/2, (b+c)/2, (c+d)/2, (d+e)/2, (f+g)/2, (g+h)/2, (h+i)/2, (i+j)/2
And you can provide additional arguments inside that MovingAverage
to modify the behavior to match what you need. The #
will be replaced one at a time by each list inside data
and the result of each of those MovingAverage
will be put into a list and returned to you.
add a comment |
You want to do the same thing to every element of a list. You should think of Map
in almost every situation like this. Each of your elements just happen to be lists, but that isn't an issue. So
data=a, b, c, d, e,f, g, h, i, j;
Map[MovingAverage[#, 2]&, data]
gives you the result
(a+b)/2, (b+c)/2, (c+d)/2, (d+e)/2, (f+g)/2, (g+h)/2, (h+i)/2, (i+j)/2
And you can provide additional arguments inside that MovingAverage
to modify the behavior to match what you need. The #
will be replaced one at a time by each list inside data
and the result of each of those MovingAverage
will be put into a list and returned to you.
add a comment |
You want to do the same thing to every element of a list. You should think of Map
in almost every situation like this. Each of your elements just happen to be lists, but that isn't an issue. So
data=a, b, c, d, e,f, g, h, i, j;
Map[MovingAverage[#, 2]&, data]
gives you the result
(a+b)/2, (b+c)/2, (c+d)/2, (d+e)/2, (f+g)/2, (g+h)/2, (h+i)/2, (i+j)/2
And you can provide additional arguments inside that MovingAverage
to modify the behavior to match what you need. The #
will be replaced one at a time by each list inside data
and the result of each of those MovingAverage
will be put into a list and returned to you.
You want to do the same thing to every element of a list. You should think of Map
in almost every situation like this. Each of your elements just happen to be lists, but that isn't an issue. So
data=a, b, c, d, e,f, g, h, i, j;
Map[MovingAverage[#, 2]&, data]
gives you the result
(a+b)/2, (b+c)/2, (c+d)/2, (d+e)/2, (f+g)/2, (g+h)/2, (h+i)/2, (i+j)/2
And you can provide additional arguments inside that MovingAverage
to modify the behavior to match what you need. The #
will be replaced one at a time by each list inside data
and the result of each of those MovingAverage
will be put into a list and returned to you.
edited Mar 28 at 6:09
answered Mar 28 at 5:50
BillBill
2,5611 gold badge7 silver badges8 bronze badges
2,5611 gold badge7 silver badges8 bronze badges
add a comment |
add a comment |
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55390217%2fhow-to-operate-moving-average-on-list-of-lists%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown