Recent content by sunny110

  1. S

    Non-zero solution of a homogenous system

    Hi, Could anyone give me a proof for the following theorem? Theorem : Ax=0 has a non-trivial solution iff det(A)=0 Thanks in advance. /Sunny
  2. S

    Square matrix to the power of a imaginary unit

    Thanks for reply. yes, for element-wise power operation, in fact the software compute the above expression. a .^(%i+1) == exp((%i+1)*log(a)) Let us return to the main problem i.e: a=[1 2;3 4]; a^(1+i) eigenvalues and eigenvectors may be get as: -->[v,d]=spec(a) d = -...
  3. S

    Square matrix to the power of a imaginary unit

    Hi; How to raising a square matrix to the power of a complex number? for example: [1 2;3 4]^(1+i) or mathematics software such as Scilab how solve such problems? -->[1 2;3 4]^(1+%i) ans = - 0.1482039 - 0.2030943 - 0.3046414 - 0.4528453 Thanks in advance...
  4. S

    What Equations Are Solved in Different FEA Analyses?

    Thanks for your reply. I followe your advice but could you introduce me some fundamental references?
  5. S

    What Equations Are Solved in Different FEA Analyses?

    Hello; I have a basic question from FEA theory. What are the basic equations solved during .. a. Linear Static Analysis b. Nonlinear analysis b. Dynamic Analysis c. Crash analysis d. CFD e. NVH I also have a look at a wikipedia article about FEM...
  6. S

    Badly Scaled Matrix? Explained with Examples

    A little off topic, but What numerical problems may occur? Can you name some of these problems please?
  7. S

    Badly Scaled Matrix? Explained with Examples

    I think for Matrices, this two terms are equivalent. Is this right? But in this book we read, "It is also all too easy to turn a badly scaled problem into a genuinely ill-conditioned problem." I have reached a contradiction.
  8. S

    Badly Scaled Matrix? Explained with Examples

    Thank you very much, HallsofIvy and JBunniii. But what is difference between a "badly scaled Matrix" and a "ill-conditioned Matrix"? Please see this page ("books.google.com/books?id=8hrDV5EbrEsC&pg=PA55" )
  9. S

    Badly Scaled Matrix? Explained with Examples

    Hi jbunniii. Thanks for reply. I don't understand the second paragraph. Can you more explain please this paragraph or introduce some book about this subject? What's the meaning of the sentence "the matrix maps the unit sphere" ,please?
  10. S

    Badly Scaled Matrix? Explained with Examples

    Thank you professor. You explain it very well. I have a little question: What is your meaning of "other problem"?
  11. S

    Badly Scaled Matrix? Explained with Examples

    badly scaled Matrix?! Hello, Scilab help states that If a matrix is badly scaled or nearly singular, a warning message will be displayed: "matrix is close to singular or badly scaled." (http://help.scilab.org/docs/5.3.3/en_US/inv.html) What do these terms mean? "well scaled" ...
Back
Top