2d array multiplication using python The Next CEO of Stack OverflowCreate List of Single Item Repeated n Times in PythonHow to define a two-dimensional array in PythonSparse Matrix multiplication in JavaMatch 2 sets of columns on a ONE-to-ONE basis in MATLABAssigning labels and creating sorted lists in matlab?How do you multiply using while without using multiplication?Compare two different size matrices to make one large matrix - Speed Improvements?Python-performance-print large numpy array as strings to tab fileArray to binary format
Text adventure game code
Grabbing quick drinks
Whats the best way to handle refactoring a big file?
What does "Its cash flow is deeply negative" mean?
Inappropriate reference requests from Journal reviewers
Why doesn't a table tennis ball float on the surface? How do we calculate buoyancy here?
What is the purpose of the Evocation wizard's Potent Cantrip feature?
How can I quit an app using Terminal?
What happens if you roll doubles 3 times then land on "Go to jail?"
Is it my responsibility to learn a new technology in my own time my employer wants to implement?
How do scammers retract money, while you can’t?
% symbol leads to superlong (forever?) compilations
Apart from "berlinern", do any other German dialects have a corresponding verb?
Why does standard notation not preserve intervals (visually)
How do I solve this limit?
How do I get the green key off the shelf in the Dobby level of Lego Harry Potter 2?
Solution of this Diophantine Equation
Horror movie/show or scene where a horse creature opens its mouth really wide and devours a man in a stables
How do I go from 300 unfinished/half written blog posts, to published posts?
How to start emacs in "nothing" mode (`fundamental-mode`)
Anatomically Correct Mesopelagic Aves
Can a single photon have an energy density?
What makes a siege story/plot interesting?
Term for the "extreme-extension" version of a straw man fallacy?
2d array multiplication using python
The Next CEO of Stack OverflowCreate List of Single Item Repeated n Times in PythonHow to define a two-dimensional array in PythonSparse Matrix multiplication in JavaMatch 2 sets of columns on a ONE-to-ONE basis in MATLABAssigning labels and creating sorted lists in matlab?How do you multiply using while without using multiplication?Compare two different size matrices to make one large matrix - Speed Improvements?Python-performance-print large numpy array as strings to tab fileArray to binary format
mat=[]
for i in range(0,m):
mat.append([])
for i in range(0,m):
for j in range(0,m):
mat[i].append(j)
mat[i][j]=0
for i in range(0,m):
for j in range(0,m):
print("entry in row coloumn ".format(i+1,j+1))
mat[i][j]=int(input())
print(mat)
mat1=[]
for i in range(0,m):
mat1.append([])
for i in range(0,m):
for j in range(0,m):
mat1[i].append(j)
mat[i][j]=0
for i in range(0,m):
for j in range(0,m):
print("entry in row coloumn ".format(i+1,j+1))
mat[i][j]=int(input())
print(mat)
mat2=[]
for i in range(0,m):
mat2.append([])
for i in range(0,m):
for j in range(0,m):
mat2[i].append(j)
mat2[i][j]=0
for i in range(0,m):
for j in range(0,m):
for k in range(0,m):
mat2[i][j]=mat2[i][j]+(mat[i][k]*mat1[k][j])
print("ans")
print(mat2)
I want to know what mistake I am making in this as I am not getting the final answer.
Please help me in this.
Thanks
matrix multiplication
add a comment |
mat=[]
for i in range(0,m):
mat.append([])
for i in range(0,m):
for j in range(0,m):
mat[i].append(j)
mat[i][j]=0
for i in range(0,m):
for j in range(0,m):
print("entry in row coloumn ".format(i+1,j+1))
mat[i][j]=int(input())
print(mat)
mat1=[]
for i in range(0,m):
mat1.append([])
for i in range(0,m):
for j in range(0,m):
mat1[i].append(j)
mat[i][j]=0
for i in range(0,m):
for j in range(0,m):
print("entry in row coloumn ".format(i+1,j+1))
mat[i][j]=int(input())
print(mat)
mat2=[]
for i in range(0,m):
mat2.append([])
for i in range(0,m):
for j in range(0,m):
mat2[i].append(j)
mat2[i][j]=0
for i in range(0,m):
for j in range(0,m):
for k in range(0,m):
mat2[i][j]=mat2[i][j]+(mat[i][k]*mat1[k][j])
print("ans")
print(mat2)
I want to know what mistake I am making in this as I am not getting the final answer.
Please help me in this.
Thanks
matrix multiplication
Hello Ashutosh, please clarify what error you are getting and what is the expected functionality.
– Deiv
Mar 7 at 14:16
there are no errors, but the final answer i am getting is wrong.
– Ashutosh Dikshit
Mar 13 at 7:38
add a comment |
mat=[]
for i in range(0,m):
mat.append([])
for i in range(0,m):
for j in range(0,m):
mat[i].append(j)
mat[i][j]=0
for i in range(0,m):
for j in range(0,m):
print("entry in row coloumn ".format(i+1,j+1))
mat[i][j]=int(input())
print(mat)
mat1=[]
for i in range(0,m):
mat1.append([])
for i in range(0,m):
for j in range(0,m):
mat1[i].append(j)
mat[i][j]=0
for i in range(0,m):
for j in range(0,m):
print("entry in row coloumn ".format(i+1,j+1))
mat[i][j]=int(input())
print(mat)
mat2=[]
for i in range(0,m):
mat2.append([])
for i in range(0,m):
for j in range(0,m):
mat2[i].append(j)
mat2[i][j]=0
for i in range(0,m):
for j in range(0,m):
for k in range(0,m):
mat2[i][j]=mat2[i][j]+(mat[i][k]*mat1[k][j])
print("ans")
print(mat2)
I want to know what mistake I am making in this as I am not getting the final answer.
Please help me in this.
Thanks
matrix multiplication
mat=[]
for i in range(0,m):
mat.append([])
for i in range(0,m):
for j in range(0,m):
mat[i].append(j)
mat[i][j]=0
for i in range(0,m):
for j in range(0,m):
print("entry in row coloumn ".format(i+1,j+1))
mat[i][j]=int(input())
print(mat)
mat1=[]
for i in range(0,m):
mat1.append([])
for i in range(0,m):
for j in range(0,m):
mat1[i].append(j)
mat[i][j]=0
for i in range(0,m):
for j in range(0,m):
print("entry in row coloumn ".format(i+1,j+1))
mat[i][j]=int(input())
print(mat)
mat2=[]
for i in range(0,m):
mat2.append([])
for i in range(0,m):
for j in range(0,m):
mat2[i].append(j)
mat2[i][j]=0
for i in range(0,m):
for j in range(0,m):
for k in range(0,m):
mat2[i][j]=mat2[i][j]+(mat[i][k]*mat1[k][j])
print("ans")
print(mat2)
I want to know what mistake I am making in this as I am not getting the final answer.
Please help me in this.
Thanks
matrix multiplication
matrix multiplication
edited Mar 7 at 15:15
AS Mackay
2,01351121
2,01351121
asked Mar 7 at 14:02
Ashutosh DikshitAshutosh Dikshit
12
12
Hello Ashutosh, please clarify what error you are getting and what is the expected functionality.
– Deiv
Mar 7 at 14:16
there are no errors, but the final answer i am getting is wrong.
– Ashutosh Dikshit
Mar 13 at 7:38
add a comment |
Hello Ashutosh, please clarify what error you are getting and what is the expected functionality.
– Deiv
Mar 7 at 14:16
there are no errors, but the final answer i am getting is wrong.
– Ashutosh Dikshit
Mar 13 at 7:38
Hello Ashutosh, please clarify what error you are getting and what is the expected functionality.
– Deiv
Mar 7 at 14:16
Hello Ashutosh, please clarify what error you are getting and what is the expected functionality.
– Deiv
Mar 7 at 14:16
there are no errors, but the final answer i am getting is wrong.
– Ashutosh Dikshit
Mar 13 at 7:38
there are no errors, but the final answer i am getting is wrong.
– Ashutosh Dikshit
Mar 13 at 7:38
add a comment |
0
active
oldest
votes
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/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
,
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%2f55045628%2f2d-array-multiplication-using-python%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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%2f55045628%2f2d-array-multiplication-using-python%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
Hello Ashutosh, please clarify what error you are getting and what is the expected functionality.
– Deiv
Mar 7 at 14:16
there are no errors, but the final answer i am getting is wrong.
– Ashutosh Dikshit
Mar 13 at 7:38