how to change the plot origin

조회 수: 3 (최근 30일)
kimo lassay
kimo lassay 2015년 5월 15일
댓글: kimo lassay 2015년 5월 15일
Hello, I have a problem to plot poincare sections when I want to change the fixed point I don't know how to plot it, moreover I work with RK4 method and henon procedure ( and I don't work with function [..]=..(..), ode.. etc). so what I want is how to plot my 'circle' around other origin that I chose which is perforce not (0.0)
  댓글 수: 2
Jan
Jan 2015년 5월 15일
The question is not clear. What does " I don't work with function [..]=..(..), ode.. " mean?
kimo lassay
kimo lassay 2015년 5월 15일
there is no function to call or to resolve i write all, my program puts the initial data to generate other values

댓글을 달려면 로그인하십시오.

답변 (2개)

Jan
Jan 2015년 5월 15일
The "origin" is (0,0) by definition. Do you want to get different center of your circle? So what about adding the wanted coordinates to the calculated coordinates? If you post the relevant part of the code, a matching suggestion is possible.
  댓글 수: 1
kimo lassay
kimo lassay 2015년 5월 15일
편집: kimo lassay 2015년 5월 15일
Thank you for replying i will tell you how my code has programed, i give the initial data and i do the rk4 method when it gives me the result i penetrate in procedure of henon and i plot the result in phase plan just of henon so i don't calculate coordinates in direct way now what i want when i give different initial data well chosen and calculated by me (theoretically must the origin of plotting be different from 0,0) but i don't know how to do it as code in matlab

댓글을 달려면 로그인하십시오.


kimo lassay
kimo lassay 2015년 5월 15일
편집: kimo lassay 2015년 5월 15일
like this what i want to do, not the same graph but the same idea whenever i change the initial data the plot will get a distance with a value that i give
  댓글 수: 1
kimo lassay
kimo lassay 2015년 5월 15일
to clarify my question what i should add in my program to let the circles get another origin which is not 0,0
hold on
if r==0 && w>0
B=B+w;
plot(B,A,'k:')
elseif r==0 && w<0
B=B+w;
plot(B,A,'g:')
else
plot(B,A,'m:')
end
hold off
but here the circles haven't the same centre plzz help.. and thanks

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by