How do I print the full result of a matrix multiplication in a Maple for loop?
How do I print the full result without the u1, u2, … variables using a for loop?
I tried declaring my two matrix this way:
Capture 1
Capture 2
It executes my for loop until u11 but doesn’t return the vector
Then I tried to change my multiplication for a multiply
Capture 3
It also does the for loop completely but doesn’t print the vector like u1 in the last example.
Then I tried declaring my two matrixes with an array:
Capture 4
Capture 5
It does the for completely but doesn’t print the vectors like u1
I change my multiplication for A.u[i] but it ain’t working either
Then I tried to declare the matrix with Matrix and the vector with Vector
Capture 6
Capture 7
It doesn’t work….
It’s always the first vector u1 that prints correctly and the others aren’t doing the multiplication
matrices maple
add a comment |
How do I print the full result without the u1, u2, … variables using a for loop?
I tried declaring my two matrix this way:
Capture 1
Capture 2
It executes my for loop until u11 but doesn’t return the vector
Then I tried to change my multiplication for a multiply
Capture 3
It also does the for loop completely but doesn’t print the vector like u1 in the last example.
Then I tried declaring my two matrixes with an array:
Capture 4
Capture 5
It does the for completely but doesn’t print the vectors like u1
I change my multiplication for A.u[i] but it ain’t working either
Then I tried to declare the matrix with Matrix and the vector with Vector
Capture 6
Capture 7
It doesn’t work….
It’s always the first vector u1 that prints correctly and the others aren’t doing the multiplication
matrices maple
add a comment |
How do I print the full result without the u1, u2, … variables using a for loop?
I tried declaring my two matrix this way:
Capture 1
Capture 2
It executes my for loop until u11 but doesn’t return the vector
Then I tried to change my multiplication for a multiply
Capture 3
It also does the for loop completely but doesn’t print the vector like u1 in the last example.
Then I tried declaring my two matrixes with an array:
Capture 4
Capture 5
It does the for completely but doesn’t print the vectors like u1
I change my multiplication for A.u[i] but it ain’t working either
Then I tried to declare the matrix with Matrix and the vector with Vector
Capture 6
Capture 7
It doesn’t work….
It’s always the first vector u1 that prints correctly and the others aren’t doing the multiplication
matrices maple
How do I print the full result without the u1, u2, … variables using a for loop?
I tried declaring my two matrix this way:
Capture 1
Capture 2
It executes my for loop until u11 but doesn’t return the vector
Then I tried to change my multiplication for a multiply
Capture 3
It also does the for loop completely but doesn’t print the vector like u1 in the last example.
Then I tried declaring my two matrixes with an array:
Capture 4
Capture 5
It does the for completely but doesn’t print the vectors like u1
I change my multiplication for A.u[i] but it ain’t working either
Then I tried to declare the matrix with Matrix and the vector with Vector
Capture 6
Capture 7
It doesn’t work….
It’s always the first vector u1 that prints correctly and the others aren’t doing the multiplication
matrices maple
matrices maple
asked Dec 1 '18 at 19:53
Émile Bernard
33
33
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I believe that your problem is that you are not using the correct syntax for assigning a result to a name.
Inside you loops, you have statements like this,
u[i+1] = A.u[i];
Such a statement constructs an equation, and does nothing else with it. Nothing is being assigned here.
What you seem to have expected was actual assignment that a statement like this would accomplish,
u[i+1] := A.u[i];
It solved it thanks a lot @acer
– Émile Bernard
Dec 2 '18 at 5:44
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
});
});
}, "mathjax-editing");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "69"
};
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/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
noCode: 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%2fmath.stackexchange.com%2fquestions%2f3021744%2fhow-do-i-print-the-full-result-of-a-matrix-multiplication-in-a-maple-for-loop%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
I believe that your problem is that you are not using the correct syntax for assigning a result to a name.
Inside you loops, you have statements like this,
u[i+1] = A.u[i];
Such a statement constructs an equation, and does nothing else with it. Nothing is being assigned here.
What you seem to have expected was actual assignment that a statement like this would accomplish,
u[i+1] := A.u[i];
It solved it thanks a lot @acer
– Émile Bernard
Dec 2 '18 at 5:44
add a comment |
I believe that your problem is that you are not using the correct syntax for assigning a result to a name.
Inside you loops, you have statements like this,
u[i+1] = A.u[i];
Such a statement constructs an equation, and does nothing else with it. Nothing is being assigned here.
What you seem to have expected was actual assignment that a statement like this would accomplish,
u[i+1] := A.u[i];
It solved it thanks a lot @acer
– Émile Bernard
Dec 2 '18 at 5:44
add a comment |
I believe that your problem is that you are not using the correct syntax for assigning a result to a name.
Inside you loops, you have statements like this,
u[i+1] = A.u[i];
Such a statement constructs an equation, and does nothing else with it. Nothing is being assigned here.
What you seem to have expected was actual assignment that a statement like this would accomplish,
u[i+1] := A.u[i];
I believe that your problem is that you are not using the correct syntax for assigning a result to a name.
Inside you loops, you have statements like this,
u[i+1] = A.u[i];
Such a statement constructs an equation, and does nothing else with it. Nothing is being assigned here.
What you seem to have expected was actual assignment that a statement like this would accomplish,
u[i+1] := A.u[i];
answered Dec 2 '18 at 5:30
acer
3,615199
3,615199
It solved it thanks a lot @acer
– Émile Bernard
Dec 2 '18 at 5:44
add a comment |
It solved it thanks a lot @acer
– Émile Bernard
Dec 2 '18 at 5:44
It solved it thanks a lot @acer
– Émile Bernard
Dec 2 '18 at 5:44
It solved it thanks a lot @acer
– Émile Bernard
Dec 2 '18 at 5:44
add a comment |
Thanks for contributing an answer to Mathematics Stack Exchange!
- 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.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2fmath.stackexchange.com%2fquestions%2f3021744%2fhow-do-i-print-the-full-result-of-a-matrix-multiplication-in-a-maple-for-loop%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