Feeds
질문
How do I show a quiver plot from a matrix?
I am trying to graph this direction field: x' = (1 1; 4 1)x This is my code: a = [1 1;4 1]; x = [x y]; [x,y] = meshgrid(-...
대략 6년 전 | 답변 수: 1 | 0
1
답변질문
Quiver Plot only shows vertical vectors
Code: [x,y] = meshgrid(-10:1:10,-10:1:10); dx = 1; dy = y*(3-(x*y)); r = ( dx.^2 + dy.^2 ).^0.5; u = dx./r; v = dy./r; fi...
대략 6년 전 | 답변 수: 1 | 0
