Why am I getting two different plots for the exact same matrix?

3 vues (au cours des 30 derniers jours)
John Vargas
John Vargas le 8 Août 2018
Commenté : Walter Roberson le 10 Août 2018
Hello, I am trying to plot these two matrices. One of them (BFF) I made myself while the other one (SF) is one i found, but I have compared the two and they should be the same (which is what I want, to replicate the Matrix SF). I made the matrix BFF from the vector fM1S1, but when I try to plot the two exact matrix, I get completely different results. Why?
  5 commentaires
John Vargas
John Vargas le 8 Août 2018
Here is the single vector I am using to make BFF. Also, @OCDER, I used the 'isequal' command and got a value of 0, meaning they are not equal but they should be. Earlier I used the ' == ' command to check if the matrix were equal and they seemed to match.
Walter Roberson
Walter Roberson le 9 Août 2018
>> max(BFF(:)-SF(:))
ans =
0.00204231
Perhaps you are encountering noticeable round-off error. If you entered data from a printed table, the table might not have shown all of the decimal places the data really had, and that can result in calculations not coming out as you expect them to.

Connectez-vous pour commenter.

Réponses (1)

Thorsten
Thorsten le 8 Août 2018
Maybe it helps if you transpose the matrix to get it right.
  4 commentaires
John Vargas
John Vargas le 9 Août 2018
Modifié(e) : John Vargas le 9 Août 2018
I plotted the two matrices to show how far off the results were and as you can see from the picture, I believe the different is very large.
Walter Roberson
Walter Roberson le 10 Août 2018
As outsiders, we have no reason to expect that the two matrices should be the same.
>> max(BFF(:))
ans =
0.00204256
>> max(SF(:))
ans =
2.5e-07
>> min(BFF(:))
ans =
0
>> min(SF(:))
ans =
0
You can see from these values that it is pretty certain that there will be some point where the difference between the two exceeds 0.002, or roughly a factor of 8000 compared to the smaller matrix.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Line Plots dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by