Effacer les filtres
Effacer les filtres

Removing error from a code...............

1 vue (au cours des 30 derniers jours)
Tankeswar Kumar
Tankeswar Kumar le 20 Fév 2013
The main programme in matlab code:
xp = l1eq_pd(x0, A, [], y, 1e-3);
The calling function is written in another file save as l1eq_pd.m as shown below:
function xp = l1eq_pd(x0, A, At, b, pdtol, pdmaxiter, cgtol, cgmaxiter);
The given error is
Undefined function 'l1eq_pd' for input arguments of type 'double'.
Error in l1eq_example (line 46)
xp = l1eq_pd(x0, A, [], y, 1e-3);
How to i remove this error....Please help.............

Réponse acceptée

Azzi Abdelmalek
Azzi Abdelmalek le 20 Fév 2013
Modifié(e) : Azzi Abdelmalek le 20 Fév 2013
Check if the function l1eq_pd is in your working folder, the same folder where you have your main code
  2 commentaires
Tankeswar Kumar
Tankeswar Kumar le 20 Fév 2013
Thank you..its working..........
Image Analyst
Image Analyst le 20 Fév 2013
Then if he solved your question, please mark it as "Accepted."

Connectez-vous pour commenter.

Plus de réponses (1)

Image Analyst
Image Analyst le 20 Fév 2013
Why are you passing only 5 of the 8 arguments? Also, type "path" on the command line to see that both m-files are on the list of folders in the search path.

Catégories

En savoir plus sur Image Processing Toolbox dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by