How do I print the full result of a matrix multiplication in a Maple for loop?
up vote
0
down vote
favorite
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
New contributor
Émile Bernard is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
up vote
0
down vote
favorite
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
New contributor
Émile Bernard is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
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
New contributor
Émile Bernard is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
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
New contributor
Émile Bernard is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Émile Bernard is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Émile Bernard is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked Dec 1 at 19:53
Émile Bernard
33
33
New contributor
Émile Bernard is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Émile Bernard is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Émile Bernard is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
accepted
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 at 5:44
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
accepted
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 at 5:44
add a comment |
up vote
0
down vote
accepted
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 at 5:44
add a comment |
up vote
0
down vote
accepted
up vote
0
down vote
accepted
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 at 5:30
acer
3,555199
3,555199
It solved it thanks a lot @acer
– Émile Bernard
Dec 2 at 5:44
add a comment |
It solved it thanks a lot @acer
– Émile Bernard
Dec 2 at 5:44
It solved it thanks a lot @acer
– Émile Bernard
Dec 2 at 5:44
It solved it thanks a lot @acer
– Émile Bernard
Dec 2 at 5:44
add a comment |
Émile Bernard is a new contributor. Be nice, and check out our Code of Conduct.
Émile Bernard is a new contributor. Be nice, and check out our Code of Conduct.
Émile Bernard is a new contributor. Be nice, and check out our Code of Conduct.
Émile Bernard is a new contributor. Be nice, and check out our Code of Conduct.
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