M-file for exercise!!!
Ältere Kommentare anzeigen
Hi!I have to create an m-file for an exercise and I wanted to ask you what is the difference between a function and a script.Which of them is better??
2 Kommentare
per isakson
am 5 Dez. 2013
the debugger and the profiler works better with functions
evi
am 5 Dez. 2013
Antworten (2)
sixwwwwww
am 5 Dez. 2013
0 Stimmen
If you want to re-use some operation again and again then function is better and if you just wanted to start writing codes in MATLAB then script is better at first. Better or not depends upon functionality usually
8 Kommentare
evi
am 5 Dez. 2013
sixwwwwww
am 5 Dez. 2013
I will suggest you using script first
evi
am 5 Dez. 2013
sixwwwwww
am 5 Dez. 2013
If you using same parameters in the script and function then you should get the same results. You should take care of values which you input to function and compare those values in the script. If they are same and also implementation in script and function is same then you should get same results beside some minor numerical noise
evi
am 5 Dez. 2013
sixwwwwww
am 5 Dez. 2013
can you show me both your script and you function? to find the reason for error
sixwwwwww
am 5 Dez. 2013
I am getting result both from your script and function. Following are the inputs: For function
test(zeros(50, 1), 50, 0.00001, 50)
For script
Give dimension: 50
Give e: 0.00001
Give maxit: 50
Give x_0: zeros(50, 1)
then why you dont get correct result. Can you check what inputs you give to both your function and script?
Andreas Goser
am 5 Dez. 2013
Bearbeitet: Andreas Goser
am 5 Dez. 2013
0 Stimmen
The documentation for this is also quite good:
Kategorien
Mehr zu Loops and Conditional Statements finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!