Community Profile

photo

Thiru jeyan


Active since 2011

Statistics

All
  • First Submission
  • First Answer

View badges

Content Feed

View by

Submitted


inverse(A)
Inverse of a square matrix

6 years ago | 2 downloads |

Answered
Easy way to multiplying standard basis
You can use this method e=@(k,n) [zeros(k-1,1);1;zeros(n-k,1)] For an example >> e(1,3) ans = 1 0 ...

7 years ago | 1

Answered
How can I find what parameters are in an inline function.
>> g = inline('sin(alpha*x)') g = Inline function: g(alpha,x) = sin(alpha*x) >> argnames(g) ans = ...

12 years ago | 0