Spline coordinates from spap2
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Biraj Khanal
am 29 Jun. 2022
Bearbeitet: Torsten
am 1 Jul. 2022
I am trying to get third order spline approximation for a given set of points.
p=[..;..];
spline=spap2(knots,3,p(1,:),p(2,:));
This works and I can use fnplt to plot the curve. Howver, I am not sure how I can get the orthogonal coordinates.
For cscvn, fnval would return a 2D matrix of coordinates. However, it does not work here. Is there any solution to this?
4 Kommentare
Akzeptierte Antwort
Torsten
am 29 Jun. 2022
Bearbeitet: Torsten
am 29 Jun. 2022
x = -2:.2:2;
y=-1:.25:1;
[xx, yy] = ndgrid(x,y);
z = exp(-(xx.^2+yy.^2));
sp = spap2({augknt([-2:2],3),2},[3 4],{x,y},z);
xyq = [1.8;0];
value = fnval(sp,xyq)
exp(-xyq.'*xyq)
2 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Spline Postprocessing finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!