photo

Kamil


Active since 2011

Followers: 0   Following: 0

Message

Statistics

MATLAB Answers

2 Questions
2 Answers

RANK
146,180
of 300,352

REPUTATION
0

CONTRIBUTIONS
2 Questions
2 Answers

ANSWER ACCEPTANCE
50.0%

VOTES RECEIVED
0

RANK
 of 20,928

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 168,212

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Thankful Level 1

View badges

Feeds

View by

Answered
dsolve - doesn't work inside a function.
function[ ] = fun(f) syms t x ftx = f(t,x); %pass symbolic arguments to the anonymous function! dfun = subs(sym('Dx ...

13 years ago | 0

Question


dsolve - doesn't work inside a function.
How can I solve: dx/dt = f(t,x) , x(t_0) = x_0 using dsolve? (or in any other symbolic way) If I try typing for example: d...

13 years ago | 2 answers | 0

2

answers

Answered
[Solved] Power method, eigenvalues.
Are there any other methods of computing eigenvalues?

14 years ago | 0

Question


[Solved] Power method, eigenvalues.
function l = ww(A,E) n = length(A); y = []; x = []; for i = 1:n % starting vector x(i) = A(i,1)...

14 years ago | 4 answers | 0

4

answers