Identify maximum difference in MatrixParallelize matrix operationsChecking powers of a matrix for zerosHow to...

Why did the Germans forbid the possession of pet pigeons in Rostov-on-Don in 1941?

Do I have a twin with permutated remainders?

A newer friend of my brother's gave him a load of baseball cards that are supposedly extremely valuable. Is this a scam?

Accidentally leaked the solution to an assignment, what to do now? (I'm the prof)

How does strength of boric acid solution increase in presence of salicylic acid?

How could an uplifted falcon's brain work?

In Japanese, what’s the difference between “Tonari ni” (となりに) and “Tsugi” (つぎ)? When would you use one over the other?

Why doesn't H₄O²⁺ exist?

Which models of the Boeing 737 are still in production?

How did the USSR manage to innovate in an environment characterized by government censorship and high bureaucracy?

Have astronauts in space suits ever taken selfies? If so, how?

Why don't electron-positron collisions release infinite energy?

How to find program name(s) of an installed package?

Why does Kotter return in Welcome Back Kotter?

Test whether all array elements are factors of a number

Mathematical cryptic clues

What does "Puller Prush Person" mean?

Adding span tags within wp_list_pages list items

What do you call a Matrix-like slowdown and camera movement effect?

Is it possible to do 50 km distance without any previous training?

Why dont electromagnetic waves interact with each other?

What do the dots in this tr command do: tr .............A-Z A-ZA-Z <<< "JVPQBOV" (with 13 dots)

Is this a crack on the carbon frame?

How is the claim "I am in New York only if I am in America" the same as "If I am in New York, then I am in America?



Identify maximum difference in Matrix


Parallelize matrix operationsChecking powers of a matrix for zerosHow to plot a graph from its incidence matrix?Finding maximum value with position from Table of valuesExtract Transfer Matrix from TransferFunctionModelGenerate a simulated covariance matrixChange entire column of matrix using its own elements for calculationsDetermine n related elements with least sum from a matrix?how to derive a conditional covariance matrix (symbolically)Approximate results













3












$begingroup$


i am trying to find the Maximum difference between two matrices and identify where this maximum occurs.



I illustrate what I mean using an example.
Given



X={{3, 1}, {8, 2}, {10, 3}}
Y={{5, 1}, {4, 2}, {5, 3}}


I calculate matrix which has (X-Y) and position as entries, specifically



d={{-2, 1}, {4, 2}, {5, 3}}


As out pout I would like to have



{5,3}


What is the best way to code this?










share|improve this question











$endgroup$








  • 1




    $begingroup$
    Ordering[Abs[X[[All, 1]] - X[[All, 2]]], -1][[1]] should give the the position 3. The value of the difference can than be found easily.
    $endgroup$
    – Henrik Schumacher
    yesterday
















3












$begingroup$


i am trying to find the Maximum difference between two matrices and identify where this maximum occurs.



I illustrate what I mean using an example.
Given



X={{3, 1}, {8, 2}, {10, 3}}
Y={{5, 1}, {4, 2}, {5, 3}}


I calculate matrix which has (X-Y) and position as entries, specifically



d={{-2, 1}, {4, 2}, {5, 3}}


As out pout I would like to have



{5,3}


What is the best way to code this?










share|improve this question











$endgroup$








  • 1




    $begingroup$
    Ordering[Abs[X[[All, 1]] - X[[All, 2]]], -1][[1]] should give the the position 3. The value of the difference can than be found easily.
    $endgroup$
    – Henrik Schumacher
    yesterday














3












3








3





$begingroup$


i am trying to find the Maximum difference between two matrices and identify where this maximum occurs.



I illustrate what I mean using an example.
Given



X={{3, 1}, {8, 2}, {10, 3}}
Y={{5, 1}, {4, 2}, {5, 3}}


I calculate matrix which has (X-Y) and position as entries, specifically



d={{-2, 1}, {4, 2}, {5, 3}}


As out pout I would like to have



{5,3}


What is the best way to code this?










share|improve this question











$endgroup$




i am trying to find the Maximum difference between two matrices and identify where this maximum occurs.



I illustrate what I mean using an example.
Given



X={{3, 1}, {8, 2}, {10, 3}}
Y={{5, 1}, {4, 2}, {5, 3}}


I calculate matrix which has (X-Y) and position as entries, specifically



d={{-2, 1}, {4, 2}, {5, 3}}


As out pout I would like to have



{5,3}


What is the best way to code this?







matrix column






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited yesterday









Henrik Schumacher

59.4k582165




59.4k582165










asked yesterday









AndreasAndreas

1028




1028








  • 1




    $begingroup$
    Ordering[Abs[X[[All, 1]] - X[[All, 2]]], -1][[1]] should give the the position 3. The value of the difference can than be found easily.
    $endgroup$
    – Henrik Schumacher
    yesterday














  • 1




    $begingroup$
    Ordering[Abs[X[[All, 1]] - X[[All, 2]]], -1][[1]] should give the the position 3. The value of the difference can than be found easily.
    $endgroup$
    – Henrik Schumacher
    yesterday








1




1




$begingroup$
Ordering[Abs[X[[All, 1]] - X[[All, 2]]], -1][[1]] should give the the position 3. The value of the difference can than be found easily.
$endgroup$
– Henrik Schumacher
yesterday




$begingroup$
Ordering[Abs[X[[All, 1]] - X[[All, 2]]], -1][[1]] should give the the position 3. The value of the difference can than be found easily.
$endgroup$
– Henrik Schumacher
yesterday










1 Answer
1






active

oldest

votes


















5












$begingroup$

Depending on your taste,



d = MapThread[{#1[[1]] - #2[[1]], #1[[2]]} &, {X, Y}]


or



d = Transpose@{X[[All, 1]] - Y[[All, 1]], X[[All, 2]]}


define the differences d, if you need them. The symbol D is already in use in Mathematica, don't use it for variables.



Then you can compute



MaximalBy[d, Abs@*Last]



{{5, 3}}




As @HenrikSchumacher comments you don't really need the intermediate d though, and you don't need the second elements in each entry denoting their position: using Ordering is more elegant:



X = {3, 8, 10};
Y = {5, 4, 5};
j = First@Ordering[Abs[X - Y], -1]



3




(X - Y)[[j]]



5







share|improve this answer











$endgroup$













  • $begingroup$
    Thank you so much
    $endgroup$
    – Andreas
    yesterday












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: "387"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f194661%2fidentify-maximum-difference-in-matrix%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









5












$begingroup$

Depending on your taste,



d = MapThread[{#1[[1]] - #2[[1]], #1[[2]]} &, {X, Y}]


or



d = Transpose@{X[[All, 1]] - Y[[All, 1]], X[[All, 2]]}


define the differences d, if you need them. The symbol D is already in use in Mathematica, don't use it for variables.



Then you can compute



MaximalBy[d, Abs@*Last]



{{5, 3}}




As @HenrikSchumacher comments you don't really need the intermediate d though, and you don't need the second elements in each entry denoting their position: using Ordering is more elegant:



X = {3, 8, 10};
Y = {5, 4, 5};
j = First@Ordering[Abs[X - Y], -1]



3




(X - Y)[[j]]



5







share|improve this answer











$endgroup$













  • $begingroup$
    Thank you so much
    $endgroup$
    – Andreas
    yesterday
















5












$begingroup$

Depending on your taste,



d = MapThread[{#1[[1]] - #2[[1]], #1[[2]]} &, {X, Y}]


or



d = Transpose@{X[[All, 1]] - Y[[All, 1]], X[[All, 2]]}


define the differences d, if you need them. The symbol D is already in use in Mathematica, don't use it for variables.



Then you can compute



MaximalBy[d, Abs@*Last]



{{5, 3}}




As @HenrikSchumacher comments you don't really need the intermediate d though, and you don't need the second elements in each entry denoting their position: using Ordering is more elegant:



X = {3, 8, 10};
Y = {5, 4, 5};
j = First@Ordering[Abs[X - Y], -1]



3




(X - Y)[[j]]



5







share|improve this answer











$endgroup$













  • $begingroup$
    Thank you so much
    $endgroup$
    – Andreas
    yesterday














5












5








5





$begingroup$

Depending on your taste,



d = MapThread[{#1[[1]] - #2[[1]], #1[[2]]} &, {X, Y}]


or



d = Transpose@{X[[All, 1]] - Y[[All, 1]], X[[All, 2]]}


define the differences d, if you need them. The symbol D is already in use in Mathematica, don't use it for variables.



Then you can compute



MaximalBy[d, Abs@*Last]



{{5, 3}}




As @HenrikSchumacher comments you don't really need the intermediate d though, and you don't need the second elements in each entry denoting their position: using Ordering is more elegant:



X = {3, 8, 10};
Y = {5, 4, 5};
j = First@Ordering[Abs[X - Y], -1]



3




(X - Y)[[j]]



5







share|improve this answer











$endgroup$



Depending on your taste,



d = MapThread[{#1[[1]] - #2[[1]], #1[[2]]} &, {X, Y}]


or



d = Transpose@{X[[All, 1]] - Y[[All, 1]], X[[All, 2]]}


define the differences d, if you need them. The symbol D is already in use in Mathematica, don't use it for variables.



Then you can compute



MaximalBy[d, Abs@*Last]



{{5, 3}}




As @HenrikSchumacher comments you don't really need the intermediate d though, and you don't need the second elements in each entry denoting their position: using Ordering is more elegant:



X = {3, 8, 10};
Y = {5, 4, 5};
j = First@Ordering[Abs[X - Y], -1]



3




(X - Y)[[j]]



5








share|improve this answer














share|improve this answer



share|improve this answer








edited yesterday

























answered yesterday









RomanRoman

4,51511127




4,51511127












  • $begingroup$
    Thank you so much
    $endgroup$
    – Andreas
    yesterday


















  • $begingroup$
    Thank you so much
    $endgroup$
    – Andreas
    yesterday
















$begingroup$
Thank you so much
$endgroup$
– Andreas
yesterday




$begingroup$
Thank you so much
$endgroup$
– Andreas
yesterday


















draft saved

draft discarded




















































Thanks for contributing an answer to Mathematica 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.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f194661%2fidentify-maximum-difference-in-matrix%23new-answer', 'question_page');
}
);

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







Popular posts from this blog

VNC viewer RFB protocol error: bad desktop size 0x0I Cannot Type the Key 'd' (lowercase) in VNC Viewer...

Tribunal Administrativo e Fiscal de Mirandela Referências Menu de...

looking for continuous Screen Capture for retroactivly reproducing errors, timeback machineRolling desktop...