![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/249503/A72A93A6-52B9-4B06-9B72-583328DDF568.png)
I am trying to plot my spline with clamped conditions and I am not sure why it is not letting me plot
조회 수: 3 (최근 30일)
이전 댓글 표시
%% clamped boundary conditions -0.5 to 0.5
t = [160 180 195 225 250 280 300].';
y = [ 78.3 81.4 84.5 85.1 89.3 91.7 94.8].';
cs = spline(t,[-0.5 y 0.5]);
xx = linspace(160,300,50);
plot(t,y,'o',xx,ppval(cs,xx),'-');
댓글 수: 0
채택된 답변
Joe Vinciguerra
2019년 11월 22일
%%clamped boundary conditions -0.5 to 0.5
t = [160 180 195 225 250 280 300];
y = [78.3 81.4 84.5 85.1 89.3 91.7 94.8];
cs = spline(t,[-0.5 y 0.5]);
xx = linspace(160,300,50);
plot(t,y,'o',xx,ppval(cs,xx),'-');
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/249503/A72A93A6-52B9-4B06-9B72-583328DDF568.png)
댓글 수: 0
추가 답변 (1개)
Walter Roberson
2019년 11월 22일
%% clamped boundary conditions -0.5 to 0.5
t = [160 180 195 225 250 280 300].';
y = [ 78.3 81.4 84.5 85.1 89.3 91.7 94.8].';
cs = spline(t,[-0.5; y; 0.5]); %changed because y is column vector
xx = linspace(160,300,50);
plot(t,y,'o',xx,ppval(cs,xx),'-');
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Spline Postprocessing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!