> +        #THE FIRST TWO ROWS OF THE MATRIX
> +        row1 = eye(n).row_join(zeros(n,n))
> +        row2 = zeros(n,n).row_join(self.mass_matrix)
> +        if self.coneqs != None:
> +            m = len(self.coneqs)
> +            I = eye(n).row_join(zeros(n,n+m))
> +            below_eye = zeros(n+m,n)
> +            A = 
> (self.mass_matrix).col_join((self._m_cd).row_join(zeros(m,m)))
> +            below_I = below_eye.row_join(A)
> +            return I.col_join(below_I)
> +        else:
> +           A = row1.col_join(row2)
> +           return A
> +
> +    @property
> +    def forcing(self):

@angadhn Check the formatting for single line docstrings that shows up 
elsewhere and try to match that:
"""Some descriptive sentence."""

---
Reply to this email directly or view it on GitHub:
https://github.com/sympy/sympy/pull/1460/files#r1339923

-- 
You received this message because you are subscribed to the Google Groups 
"sympy-patches" group.
To post to this group, send email to sympy-patches@googlegroups.com.
To unsubscribe from this group, send email to 
sympy-patches+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to