problem with matrix is singular

I was trying to make a loop to calculate updated position of user , and I keep getting "Matrix is singular"

Answers (1)

Torsten
Torsten on 2 Feb 2023
Moved: Torsten on 2 Feb 2023
I think you forgot to close the k-loop before the definition of H.
What is the matrix A ? It's not defined in your code.

11 Comments

It's a comment
I closed the loop now , you were right.
But The problem remains ( Waring ) in
delta_x=(inv(H)).*delta_R_;
And G=inv(H'.*H)
Q = inv(A'*A)
is a comment ?
I removed it It's the same as G=inv(H'.*H) So I turn it to a comment
When I put the red stop on "end" it gives values, as I press continue, the Waring "matrix is singular " appears .
Could you include your code properly ?
Dark
Dark on 2 Feb 2023
Edited: Dark on 2 Feb 2023
You can download the text file " gps pos.txt" that I adjusted it clear and organized more.
Torsten
Torsten on 2 Feb 2023
Edited: Torsten on 2 Feb 2023
There are no adjustments in the file compared to the first version.
But as I already said: The k-loop should be closed before the definition of H.
And the value of "err" is never updated within the while loop. So it will run forever.
Alright , yes err . Thank you. (Here is the file attached).
Yes I found how to update the erreur , what remains is some organization. Thank you so much man
Dark
Dark on 5 Feb 2023
Edited: Dark on 5 Feb 2023
Hello sir, this my final code, if you could make review , I couldn't update position x=x+delta_x in for loop.

Sign in to comment.

Categories

Find more on Mathematics in Help Center and File Exchange

Asked:

on 2 Feb 2023

Edited:

on 7 Feb 2023

Community Treasure Hunt

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

Start Hunting!