-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[enhancement]: A is not a squre matrix #130
Comments
Hi @haloinca 👋 , First of all, I am very sorry for not replying. For some reason, your issue went unnoticed :/ That being said, yes there is some literature to solve non-square overdetermined interval linear systems. The idea is to define an "interval least square solution" and computing it reduces to solve a symmetric (hence parametric) square interval linear system. That can be solved with e.g. the currently implemented |
Thank you for your reply. Reading your answer, I have another question. How do I convert an "interval least square solution" into a "symmetric square interval system"? Can you explain this in more detail? Or any reference is helpful. |
Hi again @haloinca 👋 , I am very sorry for the slow follow-up, quite a busy period 😅 . As a rule of thumb, if it takes more than one week to reply, feel free to ping me even every day until you get my attention, I try to reply as fast as possible, but sometimes I get driven away by the huge amount of notifications. Coming back to your question. In general, a golden reference for interval linear algebra is Jaroslav Horacek phd thesis, available here it is a great general overview of interval linear systems (except for the parametric case) written in a very pedagogical easy to follow way. Particularly, overdetermined systems are described in chapter 6. Elaborating a little, given an overdetermined interval linear system Now, this is what is generally referred as "parametric interval linear system", because the elements in the matrix (and vector) are not independent intervals, but depend on some common variables (the elements of
This is "easier" than the previous one, because you have a linear dependency on the parameters, so could be solved e.g. with the If you have any other questions, do not hesiatate to ask, I'll try to answer quicklier next time. Out of curiosity, do you need the overdetermined solver for a specific task? I'm asking because if this is blocking you in your work I'd be happy to bump this in my prioirity list |
Thank you for your patience and detailed reply, which gave me a general understanding of the interval linear system. In fact, I am a master student majoring in Electronic Engineering. I think the overdetermined solver can help me realize the interval identification problem of system parameters. I will try the methods you mentioned with the IntervalLinearAlgebra.jl toolbox. As you may know, I am a novice to interval linear system, so there's no need to change the development plan for this impressive toolbox for my personal purposes. |
Feature description
If there is a way to solve the case where $ A \in \mathbb{R}^{m \times n}, m > n $ is not a square matrix (number of rows is greater than number of columns)?
Minimum working example
Additional information
Is there any relevant literature to refer to?
The text was updated successfully, but these errors were encountered: