how can i use linspace to generate a row vector with two similar points?

조회 수: 7 (최근 30일)
i am creating an initial guess vector. As i have a multipoint BVPs, i should use double entries in the vector for the interface point. i used linspace(2,20,1000). but i want it to have two 16. how can i do it?
thank you
  댓글 수: 2
dpb
dpb 2013년 7월 28일
What's a BVP?
Please clarify what you really want...give a small example possibly explaining how you arrived at the result.
davood
davood 2013년 7월 28일
BVP stands for boundary value problem. i am using this page: http://www.mathworks.com/help/matlab/math/boundary-value-problems.html
my question is about the part witch is written:
5.Create an initial guess. For multipoint BVPs, when creating an initial guess using bvpinit, use double entries in xinit for the interface point xc.
thank you

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

채택된 답변

dpb
dpb 2013년 7월 28일
편집: dpb 2013년 7월 28일
bp=16; % breakpoint value
sp= 2; % startpoint
ep=20; % endpoint
a0=[linspace(sp,bp,N1) linspace(bp,ep,N2)];
N1, N2 could be Ntot/2 or ratio by the distance between breakpoint and overall range to keep uniform or however is best for the particular problem.
If more breakpoints expand on the above.
  댓글 수: 2
dpb
dpb 2013년 7월 28일
W/ time, you'll dream up a zillion other ways to code the above "plain vanilla" approach.... :)
The point of the earlier question was that there's little hope of providing a really responsive answer (as Azzi's shows) w/o the groundrules laid out clearly.

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

추가 답변 (1개)

Azzi Abdelmalek
Azzi Abdelmalek 2013년 7월 28일
a=sort([16 linspace(2,20,1000)])
  댓글 수: 1
davood
davood 2013년 7월 28일
편집: davood 2013년 7월 28일
thank you. but if it was linspace(2,21,1000), which does not contain 16, then what could i do to have two 16?
my regards

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

카테고리

Help CenterFile Exchange에서 Programming에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by