Why Undefined function 'besselzero' for input arguments of type 'double'.
11 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Anjali Sharma
el 25 de Jul. de 2018
Comentada: dpb
el 25 de Jul. de 2018
I m running this script from Matlab examples but it is giving me error: Undefined function 'besselzero' for input arguments of type 'double'.I am using Matlab 2014a. Here is the script from mathworks for this particular example.
n = (1:2)';
k = 10;
kind = 0;
z = besselzero(n, k, kind);
x = linspace(0, z(end), 1000);
y = nan(2, length(x));
y(1,:) = besselj(n(1), x);
y(2,:) = besselj(n(2), x);
nz = nan(size(z));
nz(1,:) = besselj(n(1), z(1,:));
nz(2,:) = besselj(n(2), z(2,:));
plot(x, y, z, nz,'kx')
Anyone pls suggest why such error appears. If it is license issue then pls suggest how should I define this "besselzero". Thanks
5 comentarios
dpb
el 25 de Jul. de 2018
"which besselzero returned not found ...can you suggest something?"
As already did, to use besselzero you'll have to obtain it from FEX and place it in a directory on the MATLABPATH for it to be found; just like any other m-file you were to write has to be on the search path as outlined in folders-that-matlab-accesses
Respuesta aceptada
Steven Lord
el 25 de Jul. de 2018
Before you use functions that are part of an add-on from the File Exchange, you must download and install that add-on. If you're using a sufficiently recent release of MATLAB, search for "Add-Ons" in your documentation and find the equivalent of this page in your installation's documentation. If you use Add-On Explorer it will handle downloading the add-on, installing it, and ensuring it is on the MATLAB path. If you download it manually, you will need to install it and add it to the MATLAB path.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Downloads en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
