![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/3871842_1518009839220_DEF.jpg)
Unai San Miguel
Nordex-ACCIONA
Followers: 0 Following: 0
Statistiques
RANG
2 170
of 297 016
RÉPUTATION
29
CONTRIBUTIONS
2 Questions
24 Réponses
ACCEPTATION DE VOS RÉPONSES
50.0%
VOTES REÇUS
4
RANG
of 20 419
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
Optimal knot distribution when specifying interpolating value and derivatives
The length of the knot vector knots should be equal to the length of your [x, x] vector plus the order of the spline, 5 in your ...
plus de 4 ans il y a | 0
Code to plot von mises and tresca yield conditions
This plot can be generated with some analytic work, by getting the ellipse in parametric equations, generating points along tha...
environ 5 ans il y a | 0
Scattered interpolation with weight factors
You could add some random points near the point you rely more on. Close enough to effect the interpolation and separated enough ...
environ 5 ans il y a | 0
curve fitting toolbox: how to fit a multivariate b spline to data (regression)
I think it is the same as for the d=1 case: you have to define a convenient knot sequence, and in turn a spline vector space, an...
plus de 5 ans il y a | 0
Bezier surface to CAD program
With the Nurbs2IGES toolbox found in MATLAB File Exchange https://www.mathworks.com/matlabcentral/fileexchange/12087-nurbs2iges ...
plus de 5 ans il y a | 0
| A accepté
N-Dimensional smoothing spline weighting
You can use a cell of two set of weights, one in each direction of the input csaps({1:M, 1:N}, I, [], {wi, wj}); with wi an ...
environ 6 ans il y a | 0
How can I represent and visualize my four dimensional system in a meaningful way?
3 dimensions are really hard to plot, it is almost always better to switch to 2D, and better contours than filled contours. If y...
plus de 6 ans il y a | 0
how can i work with the coefs of cscvn?
There is no need to use the coefficients of the function, because the Curve Fitting Toolbox provides with functions to derive an...
plus de 6 ans il y a | 1
Error finding and graphing max values of data (Error using horzcat Dimensions of matrices being concatenated are not consistent. )
Your |TEK00055.csv| data has three data points with maximum y-values: >> xmax xmax = 6.8720 6.8730 6.9890...
plus de 6 ans il y a | 0
| A accepté
multidimensional numerical integration without large matrices
I don't like |meshgrid| even for 2 variables, so I would use |ndgrid| instead [X1, X2, X3, X4] = ndgrid(x1, x2, x3, x4); ...
presque 7 ans il y a | 0
'stacking' 2D graphs on top of each other.
There are |plot3|, |contour3| versions of |plot|, |contour| for which you would have to add a third coordinate for each 2D plot,...
presque 7 ans il y a | 0
| A accepté
How to plot sin(theta)*cos(phi) in spherical coordinates
|sin(theta) * cos(phi)| is the result of the matrix multiplication of the two terms. Maybe you wanted |sin(theta) .* cos(phi)|? ...
presque 7 ans il y a | 0
difficulty in printing for 'cell' inputs.
If you are OK with the contents and format of |c| maybe you can substitute the |fprintf| line by: cellfun(@(x) fprintf(fid2...
presque 7 ans il y a | 0
How do i find the intersection points between a surface and a patch?
It is hard to find the intersection of a surface and a plane (in general), as it is explained <http://web.mit.edu/hyperbook/Patr...
environ 7 ans il y a | 0
| A accepté
A résolu
Angle between two vectors
You have two vectors , determine the angle between these two vectors For example: u = [0 0 1]; v = [1 0 0]; The a...
environ 7 ans il y a
Calling multiple function files to plot in one figure
Although I don't know exactly what kind of plots you want to do, or what are the variables involved, sometimes it helps to use t...
environ 7 ans il y a | 0
Constructing an Offset-Curve
The subject is not trivial, a nice description can be found in <http://web.mit.edu/hyperbook/Patrikalakis-Maekawa-Cho/node210.ht...
presque 8 ans il y a | 0
| A accepté
How to display the contour line values from a contour plot generated using the curve fitting tools?
If, in the auto-generated code from the gui you specify |h| (the handler to the plots) as an aditional output variable you can a...
presque 8 ans il y a | 0
| A accepté
Revolution 2D spline to 3D surface
It depends on what you mean by _analytical expression_. For example, it is not possible to express a circle and thus a revolutio...
presque 8 ans il y a | 0
fnval for tensor splines
|fnval(pp, [x(:)'; y(:)'])|? From the <https://es.mathworks.com/help/curvefit/fnval.html fnval> doc page (...) For an m...
presque 8 ans il y a | 0
Fit polynomial to data with prescribed second derivative
The <http://es.mathworks.com/help/curvefit/csape.html help page for csape> says that you would have to use |csape(x, [-0.001, y,...
presque 8 ans il y a | 0
Closed spline fit of airfoil coordinates
You are working with curves, not functions. Your |airfoil| is a (planar) curve, or in the Splines toolbox wording a 2-valued...
presque 8 ans il y a | 0
Question
jupyter notebook vs live scripts
What are the differences between Live Scripts and Jupyter notebooks?
presque 8 ans il y a | 3 réponses | 3
3
réponsesStoring the output of spap2 into an array then looping and graphing that output
The output of |spap2| is a struct, something like: >>sp sp = form: 'B-' knots: [1x25 double] ... ...
plus de 8 ans il y a | 0
statistics (PCA) on piecewise B spline for Shape Model problem using spline toolbox
|fncmb| takes first both spline functions to the same vector space (same breaks and order in this case). If the breaks are not t...
plus de 8 ans il y a | 0
B-Spline least squares (spap2)
Hi, |spap2| returns the B-form of the spline, and if you don't supply a knot vector it will use C2 continuity (k-2 = 4-2 in y...
plus de 8 ans il y a | 0
Question
What is the best way to remove a knot from a (univariate) spline?
In my problem, I have a planar curve, i.e., a 2-valued univariate spline function |s|. I insert |k-1| times a value in the knot ...
presque 9 ans il y a | 1 réponse | 0