Filter löschen
Filter löschen

save the value in side the function file

1 Ansicht (letzte 30 Tage)
Laura
Laura am 23 Jul. 2015
Kommentiert: Laura am 24 Jul. 2015
I have 3 m-files let say:
function [f]=fun(g)
Myy=20*x^2; % Assume we know x matrix
f=Myy;
the 2nd file is
function [c]=bisect(fun,a,b)
Ma=fun(a);
Mb=fun(b)
c=(a+b)/2;
Third file:
a= 1; b=2;
c=bisect(@fun,a,b)
If I run the third file, how do I save (store) value of f every time, a,b is changed. Thanks

Antworten (2)

Azzi Abdelmalek
Azzi Abdelmalek am 23 Jul. 2015
k=0;
a= 1;
b=2;
k=k+1
c{k}=bisect(@fun,a,b)
  1 Kommentar
Laura
Laura am 24 Jul. 2015
I tried that but it seems to be not working.

Melden Sie sich an, um zu kommentieren.


Azzi Abdelmalek
Azzi Abdelmalek am 23 Jul. 2015
k=0;
a= 1;
b=2;
k=k+1
c{k}=bisect(@fun,a,b)

Kategorien

Mehr zu Files and Folders finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by