Noise in Eigenvalues plot Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Problem with plotting eigenvaluesHow to overlay ListPlot on a ContourPlot with correct range?Trying to find intersection of 3 functions graphicallySome glitch in the Plot: Two approaches for plotting give different resultsDEigenvalues with Robin B.C. sign problemHow can I add a custom color function and a custom mesh to a 3D parametric plot?How do I plot $y=8 sin(2 pi / 3)$?Plotting eigenvalues in one plot for three different parametersEigenvalues of a non-Hermitian complex periodic potentialHow to compute eigenvalues of a large symbolic matrix?

Can gravitational waves pass through a black hole?

Statistical analysis applied to methods coming out of Machine Learning

Is it OK to use the testing sample to compare algorithms?

As a dual citizen, my US passport will expire one day after traveling to the US. Will this work?

Can the Haste spell grant both a Beast Master ranger and their animal companion extra attacks?

My mentor says to set image to Fine instead of RAW — how is this different from JPG?

How to make triangles with rounded sides and corners? (squircle with 3 sides)

Determine whether an integer is a palindrome

Twin's vs. Twins'

Is this Kuo-toa homebrew race balanced?

How to make an animal which can only breed for a certain number of generations?

What are some likely causes to domain member PC losing contact to domain controller?

Table formatting with tabularx?

Flight departed from the gate 5 min before scheduled departure time. Refund options

Fit odd number of triplets in a measure?

Did any compiler fully use 80-bit floating point?

How to ask rejected full-time candidates to apply to teach individual courses?

systemd and copy (/bin/cp): no such file or directory

Can two people see the same photon?

How much damage would a cupful of neutron star matter do to the Earth?

newbie Q : How to read an output file in one command line

What is a more techy Technical Writer job title that isn't cutesy or confusing?

The Nth Gryphon Number

Any stored/leased 737s that could substitute for grounded MAXs?



Noise in Eigenvalues plot



Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)
Announcing the arrival of Valued Associate #679: Cesar Manara
Unicorn Meta Zoo #1: Why another podcast?Problem with plotting eigenvaluesHow to overlay ListPlot on a ContourPlot with correct range?Trying to find intersection of 3 functions graphicallySome glitch in the Plot: Two approaches for plotting give different resultsDEigenvalues with Robin B.C. sign problemHow can I add a custom color function and a custom mesh to a 3D parametric plot?How do I plot $y=8 sin(2 pi / 3)$?Plotting eigenvalues in one plot for three different parametersEigenvalues of a non-Hermitian complex periodic potentialHow to compute eigenvalues of a large symbolic matrix?










3












$begingroup$


I am trying to Plot Eigenvalues of a Hamiltonian, but I am getting noisy plot, which is incorrect. Here is the code.



A1 = 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, -1, 0, 0, -1, 0;
A2 = 0, -I, 0, 0, I, 0, 0, 0, 0, 0, 0, -I, 0, 0, I, 0;
A3 = 0, 0, 0, -1, 0, 0, 1, 0, 0, 1, 0, 0, -1, 0, 0, 0;
A4 = 0, -I, 0, 0, I, 0, 0, 0, 0, 0, 0, I, 0, 0, -I, 0;
A5 = 1, 0, 0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 0, 0, 0, -1;
A6 = 0, 0, 0, -I, 0, 0, I, 0, 0, -I, 0, 0, I, 0, 0, 0;
A7 = 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0;
A8 = 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1;
H[d_, λ_, β_, m_] :=
a (Sin[x] A1 + Sin[ky] A2) + A3 β +
d A4 + (t Cos[z] + 2 b (2 - Cos[x] - Cos[ky])) A5 + α*
Sin[ky] A6 + λ Sin[z] A7+m*A8;
ky = 0;
a = 1;
b = 1;
t = 1.5;
α = 0.3;
Plot3D[Eigenvalues[H[0.1, 0.5, 0.7, 0]][[4]], x, -π, π, z, 0, 2 π]


Mathematica graphics



Any help will be highly appreciated.










share|improve this question











$endgroup$
















    3












    $begingroup$


    I am trying to Plot Eigenvalues of a Hamiltonian, but I am getting noisy plot, which is incorrect. Here is the code.



    A1 = 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, -1, 0, 0, -1, 0;
    A2 = 0, -I, 0, 0, I, 0, 0, 0, 0, 0, 0, -I, 0, 0, I, 0;
    A3 = 0, 0, 0, -1, 0, 0, 1, 0, 0, 1, 0, 0, -1, 0, 0, 0;
    A4 = 0, -I, 0, 0, I, 0, 0, 0, 0, 0, 0, I, 0, 0, -I, 0;
    A5 = 1, 0, 0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 0, 0, 0, -1;
    A6 = 0, 0, 0, -I, 0, 0, I, 0, 0, -I, 0, 0, I, 0, 0, 0;
    A7 = 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0;
    A8 = 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1;
    H[d_, λ_, β_, m_] :=
    a (Sin[x] A1 + Sin[ky] A2) + A3 β +
    d A4 + (t Cos[z] + 2 b (2 - Cos[x] - Cos[ky])) A5 + α*
    Sin[ky] A6 + λ Sin[z] A7+m*A8;
    ky = 0;
    a = 1;
    b = 1;
    t = 1.5;
    α = 0.3;
    Plot3D[Eigenvalues[H[0.1, 0.5, 0.7, 0]][[4]], x, -π, π, z, 0, 2 π]


    Mathematica graphics



    Any help will be highly appreciated.










    share|improve this question











    $endgroup$














      3












      3








      3





      $begingroup$


      I am trying to Plot Eigenvalues of a Hamiltonian, but I am getting noisy plot, which is incorrect. Here is the code.



      A1 = 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, -1, 0, 0, -1, 0;
      A2 = 0, -I, 0, 0, I, 0, 0, 0, 0, 0, 0, -I, 0, 0, I, 0;
      A3 = 0, 0, 0, -1, 0, 0, 1, 0, 0, 1, 0, 0, -1, 0, 0, 0;
      A4 = 0, -I, 0, 0, I, 0, 0, 0, 0, 0, 0, I, 0, 0, -I, 0;
      A5 = 1, 0, 0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 0, 0, 0, -1;
      A6 = 0, 0, 0, -I, 0, 0, I, 0, 0, -I, 0, 0, I, 0, 0, 0;
      A7 = 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0;
      A8 = 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1;
      H[d_, λ_, β_, m_] :=
      a (Sin[x] A1 + Sin[ky] A2) + A3 β +
      d A4 + (t Cos[z] + 2 b (2 - Cos[x] - Cos[ky])) A5 + α*
      Sin[ky] A6 + λ Sin[z] A7+m*A8;
      ky = 0;
      a = 1;
      b = 1;
      t = 1.5;
      α = 0.3;
      Plot3D[Eigenvalues[H[0.1, 0.5, 0.7, 0]][[4]], x, -π, π, z, 0, 2 π]


      Mathematica graphics



      Any help will be highly appreciated.










      share|improve this question











      $endgroup$




      I am trying to Plot Eigenvalues of a Hamiltonian, but I am getting noisy plot, which is incorrect. Here is the code.



      A1 = 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, -1, 0, 0, -1, 0;
      A2 = 0, -I, 0, 0, I, 0, 0, 0, 0, 0, 0, -I, 0, 0, I, 0;
      A3 = 0, 0, 0, -1, 0, 0, 1, 0, 0, 1, 0, 0, -1, 0, 0, 0;
      A4 = 0, -I, 0, 0, I, 0, 0, 0, 0, 0, 0, I, 0, 0, -I, 0;
      A5 = 1, 0, 0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 0, 0, 0, -1;
      A6 = 0, 0, 0, -I, 0, 0, I, 0, 0, -I, 0, 0, I, 0, 0, 0;
      A7 = 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0;
      A8 = 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1;
      H[d_, λ_, β_, m_] :=
      a (Sin[x] A1 + Sin[ky] A2) + A3 β +
      d A4 + (t Cos[z] + 2 b (2 - Cos[x] - Cos[ky])) A5 + α*
      Sin[ky] A6 + λ Sin[z] A7+m*A8;
      ky = 0;
      a = 1;
      b = 1;
      t = 1.5;
      α = 0.3;
      Plot3D[Eigenvalues[H[0.1, 0.5, 0.7, 0]][[4]], x, -π, π, z, 0, 2 π]


      Mathematica graphics



      Any help will be highly appreciated.







      plotting eigenvalues






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 2 hours ago









      Michael E2

      151k12203483




      151k12203483










      asked 2 hours ago









      Hazoor ImranHazoor Imran

      263




      263




















          2 Answers
          2






          active

          oldest

          votes


















          2












          $begingroup$

          By default, the eigenvalues are ordered by absolute value. All the eigenvalues of this particular matrix have the same absolute value plus some rounding errors. Thus, it can easily happen, that the fourth eigenvalue is positive or negative, depending on the parameters.



          You can use Max to plot the largest eigenvalue:



          Plot3D[Max@Eigenvalues[H[0.1, 0.5, 0.7, 0.]], x, -Pi, Pi, z, 0, 2 Pi]


          enter image description here



          Alternatively, you may use the "Criteria" suboption of the Method "Arnoldi":



          Plot3D[
          Eigenvalues[
          H[0.1, 0.5, 0.7, 0], -1,
          Method -> "Arnoldi", "Criteria" -> "RealPart"
          ],
          x, - Pi, Pi, z, 0, 2 Pi]





          share|improve this answer









          $endgroup$












          • $begingroup$
            Thanks @ Henrik Schumacher
            $endgroup$
            – Hazoor Imran
            1 hour ago










          • $begingroup$
            You're welcome.
            $endgroup$
            – Henrik Schumacher
            40 mins ago


















          2












          $begingroup$

          Not sure why you pick the 4th element, but maybe this will help:



          ev4 = Eigenvalues[H[p, q, r, s]][[4]] /. 
          Thread[p, q, r, s -> 0.1, 0.5, 0.7, 0];
          Plot3D[ev4, x, -π, π, z, 0, 2 π]


          enter image description here






          share|improve this answer









          $endgroup$












          • $begingroup$
            Thanks @ Michael E2, Is it possible to do this with an equation by the contourplot. Like ev4 = Eigenvalues[H[p, q, r, s]][[4]] /. Thread[p, q, r, s -> 0.1, 0.5, 0.7, 0]; ContourPlot[ev4==-0.5, x, -[Pi], [Pi], z, 0, 2 [Pi]]. In my case this is not working.
            $endgroup$
            – Hazoor Imran
            1 hour ago










          • $begingroup$
            @HazoorImran Yes, but set the value -0.5 on the right hand side to something bigger. For example ContourPlot[ev4 == 2, x, -[Pi], [Pi], z, 0, 2 [Pi]].
            $endgroup$
            – Michael E2
            1 hour ago










          • $begingroup$
            Thanks @ Michael E2, Yes this work.
            $endgroup$
            – Hazoor Imran
            1 hour ago











          Your Answer








          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%2f195721%2fnoise-in-eigenvalues-plot%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          2 Answers
          2






          active

          oldest

          votes








          2 Answers
          2






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          2












          $begingroup$

          By default, the eigenvalues are ordered by absolute value. All the eigenvalues of this particular matrix have the same absolute value plus some rounding errors. Thus, it can easily happen, that the fourth eigenvalue is positive or negative, depending on the parameters.



          You can use Max to plot the largest eigenvalue:



          Plot3D[Max@Eigenvalues[H[0.1, 0.5, 0.7, 0.]], x, -Pi, Pi, z, 0, 2 Pi]


          enter image description here



          Alternatively, you may use the "Criteria" suboption of the Method "Arnoldi":



          Plot3D[
          Eigenvalues[
          H[0.1, 0.5, 0.7, 0], -1,
          Method -> "Arnoldi", "Criteria" -> "RealPart"
          ],
          x, - Pi, Pi, z, 0, 2 Pi]





          share|improve this answer









          $endgroup$












          • $begingroup$
            Thanks @ Henrik Schumacher
            $endgroup$
            – Hazoor Imran
            1 hour ago










          • $begingroup$
            You're welcome.
            $endgroup$
            – Henrik Schumacher
            40 mins ago















          2












          $begingroup$

          By default, the eigenvalues are ordered by absolute value. All the eigenvalues of this particular matrix have the same absolute value plus some rounding errors. Thus, it can easily happen, that the fourth eigenvalue is positive or negative, depending on the parameters.



          You can use Max to plot the largest eigenvalue:



          Plot3D[Max@Eigenvalues[H[0.1, 0.5, 0.7, 0.]], x, -Pi, Pi, z, 0, 2 Pi]


          enter image description here



          Alternatively, you may use the "Criteria" suboption of the Method "Arnoldi":



          Plot3D[
          Eigenvalues[
          H[0.1, 0.5, 0.7, 0], -1,
          Method -> "Arnoldi", "Criteria" -> "RealPart"
          ],
          x, - Pi, Pi, z, 0, 2 Pi]





          share|improve this answer









          $endgroup$












          • $begingroup$
            Thanks @ Henrik Schumacher
            $endgroup$
            – Hazoor Imran
            1 hour ago










          • $begingroup$
            You're welcome.
            $endgroup$
            – Henrik Schumacher
            40 mins ago













          2












          2








          2





          $begingroup$

          By default, the eigenvalues are ordered by absolute value. All the eigenvalues of this particular matrix have the same absolute value plus some rounding errors. Thus, it can easily happen, that the fourth eigenvalue is positive or negative, depending on the parameters.



          You can use Max to plot the largest eigenvalue:



          Plot3D[Max@Eigenvalues[H[0.1, 0.5, 0.7, 0.]], x, -Pi, Pi, z, 0, 2 Pi]


          enter image description here



          Alternatively, you may use the "Criteria" suboption of the Method "Arnoldi":



          Plot3D[
          Eigenvalues[
          H[0.1, 0.5, 0.7, 0], -1,
          Method -> "Arnoldi", "Criteria" -> "RealPart"
          ],
          x, - Pi, Pi, z, 0, 2 Pi]





          share|improve this answer









          $endgroup$



          By default, the eigenvalues are ordered by absolute value. All the eigenvalues of this particular matrix have the same absolute value plus some rounding errors. Thus, it can easily happen, that the fourth eigenvalue is positive or negative, depending on the parameters.



          You can use Max to plot the largest eigenvalue:



          Plot3D[Max@Eigenvalues[H[0.1, 0.5, 0.7, 0.]], x, -Pi, Pi, z, 0, 2 Pi]


          enter image description here



          Alternatively, you may use the "Criteria" suboption of the Method "Arnoldi":



          Plot3D[
          Eigenvalues[
          H[0.1, 0.5, 0.7, 0], -1,
          Method -> "Arnoldi", "Criteria" -> "RealPart"
          ],
          x, - Pi, Pi, z, 0, 2 Pi]






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 2 hours ago









          Henrik SchumacherHenrik Schumacher

          60.7k585171




          60.7k585171











          • $begingroup$
            Thanks @ Henrik Schumacher
            $endgroup$
            – Hazoor Imran
            1 hour ago










          • $begingroup$
            You're welcome.
            $endgroup$
            – Henrik Schumacher
            40 mins ago
















          • $begingroup$
            Thanks @ Henrik Schumacher
            $endgroup$
            – Hazoor Imran
            1 hour ago










          • $begingroup$
            You're welcome.
            $endgroup$
            – Henrik Schumacher
            40 mins ago















          $begingroup$
          Thanks @ Henrik Schumacher
          $endgroup$
          – Hazoor Imran
          1 hour ago




          $begingroup$
          Thanks @ Henrik Schumacher
          $endgroup$
          – Hazoor Imran
          1 hour ago












          $begingroup$
          You're welcome.
          $endgroup$
          – Henrik Schumacher
          40 mins ago




          $begingroup$
          You're welcome.
          $endgroup$
          – Henrik Schumacher
          40 mins ago











          2












          $begingroup$

          Not sure why you pick the 4th element, but maybe this will help:



          ev4 = Eigenvalues[H[p, q, r, s]][[4]] /. 
          Thread[p, q, r, s -> 0.1, 0.5, 0.7, 0];
          Plot3D[ev4, x, -π, π, z, 0, 2 π]


          enter image description here






          share|improve this answer









          $endgroup$












          • $begingroup$
            Thanks @ Michael E2, Is it possible to do this with an equation by the contourplot. Like ev4 = Eigenvalues[H[p, q, r, s]][[4]] /. Thread[p, q, r, s -> 0.1, 0.5, 0.7, 0]; ContourPlot[ev4==-0.5, x, -[Pi], [Pi], z, 0, 2 [Pi]]. In my case this is not working.
            $endgroup$
            – Hazoor Imran
            1 hour ago










          • $begingroup$
            @HazoorImran Yes, but set the value -0.5 on the right hand side to something bigger. For example ContourPlot[ev4 == 2, x, -[Pi], [Pi], z, 0, 2 [Pi]].
            $endgroup$
            – Michael E2
            1 hour ago










          • $begingroup$
            Thanks @ Michael E2, Yes this work.
            $endgroup$
            – Hazoor Imran
            1 hour ago















          2












          $begingroup$

          Not sure why you pick the 4th element, but maybe this will help:



          ev4 = Eigenvalues[H[p, q, r, s]][[4]] /. 
          Thread[p, q, r, s -> 0.1, 0.5, 0.7, 0];
          Plot3D[ev4, x, -π, π, z, 0, 2 π]


          enter image description here






          share|improve this answer









          $endgroup$












          • $begingroup$
            Thanks @ Michael E2, Is it possible to do this with an equation by the contourplot. Like ev4 = Eigenvalues[H[p, q, r, s]][[4]] /. Thread[p, q, r, s -> 0.1, 0.5, 0.7, 0]; ContourPlot[ev4==-0.5, x, -[Pi], [Pi], z, 0, 2 [Pi]]. In my case this is not working.
            $endgroup$
            – Hazoor Imran
            1 hour ago










          • $begingroup$
            @HazoorImran Yes, but set the value -0.5 on the right hand side to something bigger. For example ContourPlot[ev4 == 2, x, -[Pi], [Pi], z, 0, 2 [Pi]].
            $endgroup$
            – Michael E2
            1 hour ago










          • $begingroup$
            Thanks @ Michael E2, Yes this work.
            $endgroup$
            – Hazoor Imran
            1 hour ago













          2












          2








          2





          $begingroup$

          Not sure why you pick the 4th element, but maybe this will help:



          ev4 = Eigenvalues[H[p, q, r, s]][[4]] /. 
          Thread[p, q, r, s -> 0.1, 0.5, 0.7, 0];
          Plot3D[ev4, x, -π, π, z, 0, 2 π]


          enter image description here






          share|improve this answer









          $endgroup$



          Not sure why you pick the 4th element, but maybe this will help:



          ev4 = Eigenvalues[H[p, q, r, s]][[4]] /. 
          Thread[p, q, r, s -> 0.1, 0.5, 0.7, 0];
          Plot3D[ev4, x, -π, π, z, 0, 2 π]


          enter image description here







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 2 hours ago









          Michael E2Michael E2

          151k12203483




          151k12203483











          • $begingroup$
            Thanks @ Michael E2, Is it possible to do this with an equation by the contourplot. Like ev4 = Eigenvalues[H[p, q, r, s]][[4]] /. Thread[p, q, r, s -> 0.1, 0.5, 0.7, 0]; ContourPlot[ev4==-0.5, x, -[Pi], [Pi], z, 0, 2 [Pi]]. In my case this is not working.
            $endgroup$
            – Hazoor Imran
            1 hour ago










          • $begingroup$
            @HazoorImran Yes, but set the value -0.5 on the right hand side to something bigger. For example ContourPlot[ev4 == 2, x, -[Pi], [Pi], z, 0, 2 [Pi]].
            $endgroup$
            – Michael E2
            1 hour ago










          • $begingroup$
            Thanks @ Michael E2, Yes this work.
            $endgroup$
            – Hazoor Imran
            1 hour ago
















          • $begingroup$
            Thanks @ Michael E2, Is it possible to do this with an equation by the contourplot. Like ev4 = Eigenvalues[H[p, q, r, s]][[4]] /. Thread[p, q, r, s -> 0.1, 0.5, 0.7, 0]; ContourPlot[ev4==-0.5, x, -[Pi], [Pi], z, 0, 2 [Pi]]. In my case this is not working.
            $endgroup$
            – Hazoor Imran
            1 hour ago










          • $begingroup$
            @HazoorImran Yes, but set the value -0.5 on the right hand side to something bigger. For example ContourPlot[ev4 == 2, x, -[Pi], [Pi], z, 0, 2 [Pi]].
            $endgroup$
            – Michael E2
            1 hour ago










          • $begingroup$
            Thanks @ Michael E2, Yes this work.
            $endgroup$
            – Hazoor Imran
            1 hour ago















          $begingroup$
          Thanks @ Michael E2, Is it possible to do this with an equation by the contourplot. Like ev4 = Eigenvalues[H[p, q, r, s]][[4]] /. Thread[p, q, r, s -> 0.1, 0.5, 0.7, 0]; ContourPlot[ev4==-0.5, x, -[Pi], [Pi], z, 0, 2 [Pi]]. In my case this is not working.
          $endgroup$
          – Hazoor Imran
          1 hour ago




          $begingroup$
          Thanks @ Michael E2, Is it possible to do this with an equation by the contourplot. Like ev4 = Eigenvalues[H[p, q, r, s]][[4]] /. Thread[p, q, r, s -> 0.1, 0.5, 0.7, 0]; ContourPlot[ev4==-0.5, x, -[Pi], [Pi], z, 0, 2 [Pi]]. In my case this is not working.
          $endgroup$
          – Hazoor Imran
          1 hour ago












          $begingroup$
          @HazoorImran Yes, but set the value -0.5 on the right hand side to something bigger. For example ContourPlot[ev4 == 2, x, -[Pi], [Pi], z, 0, 2 [Pi]].
          $endgroup$
          – Michael E2
          1 hour ago




          $begingroup$
          @HazoorImran Yes, but set the value -0.5 on the right hand side to something bigger. For example ContourPlot[ev4 == 2, x, -[Pi], [Pi], z, 0, 2 [Pi]].
          $endgroup$
          – Michael E2
          1 hour ago












          $begingroup$
          Thanks @ Michael E2, Yes this work.
          $endgroup$
          – Hazoor Imran
          1 hour ago




          $begingroup$
          Thanks @ Michael E2, Yes this work.
          $endgroup$
          – Hazoor Imran
          1 hour ago

















          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%2f195721%2fnoise-in-eigenvalues-plot%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

          How to create a command for the “strange m” symbol in latex? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)How do you make your own symbol when Detexify fails?Writing bold small caps with mathpazo packageplus-minus symbol with parenthesis around the minus signGreek character in Beamer document titleHow to create dashed right arrow over symbol?Currency symbol: Turkish LiraDouble prec as a single symbol?Plus Sign Too Big; How to Call adfbullet?Is there a TeX macro for three-legged pi?How do I get my integral-like symbol to align like the integral?How to selectively substitute a letter with another symbol representing the same letterHow do I generate a less than symbol and vertical bar that are the same height?

          The Calvary Singular or Plural The 2019 Stack Overflow Developer Survey Results Are InAre collective nouns always plural, or are certain ones singular?Is “audience” singular or plural?“Wasn't” vs. “weren't” in a vernacular sentence“My last couple of years” — singular or plural?Is 'rest' singular or plural?Is “all but one” singular or plural?Whether to use the singular or plural form of basis?Singular and Plural for numbersIs there a plural form of teeth?performance: plural vs singular?singular or plural nouns?Singular and Plural

          Category:Tremithousa Media in category "Tremithousa"Navigation menuUpload media34° 49′ 02.7″ N, 32° 26′ 37.32″ EOpenStreetMapGoogle EarthProximityramaReasonatorScholiaStatisticsWikiShootMe