An introduction to creating your own functions, saving them in the proper directory, and calling your own functions in your main script.
Пікірлер
@jonathanquintanilla61638 жыл бұрын
I hope you realize that even 3 years after you uploaded this, it is still a tremendous help. Thank you
@RM-gm7lu6 жыл бұрын
Try 5 years
@bionova75 жыл бұрын
6 years later too
@billthehill3 жыл бұрын
How about 8 xD
@junidabawz3 жыл бұрын
How bout 9 lmaoo
@enricomarsili9233 Жыл бұрын
10 years and counting!
@danielabraham1133 жыл бұрын
This was so helpful and I adore the sense of humor. The world needs more coaches like you
@shahriarchowdhury78715 жыл бұрын
this one definitely deserves a "2019 anyone?"
@sevn95627 жыл бұрын
This was explained better in 22 min than it was in hours from my engineering prof. Thank you so much!
@jaspersmitt06 жыл бұрын
Very clear explanation and nice that you included tips how to start the main script and function script and tips that make the coding just more convenient for starters
@orca_ah5 жыл бұрын
7 years later it is useful and good, very good and funny explanations, thank you man, too bad you do not have lots of videos
@HamzaDjeloud5 жыл бұрын
I'm on MATLAB R2020b and this video is still useful for an intro to functions. Nice job!
@kamohelot86774 жыл бұрын
We need more of these videos. Thank you!
@shanemiller37436 жыл бұрын
I'm on MATLAB R2017b and this video is still useful for an intro to functions. Nice job!
@fernandosalcido10157 жыл бұрын
Thank you so much for using 'bananas'! The fact that it was so ridiculous/different from other variables helped make the concept more contcrete.
@maricutz9 жыл бұрын
Loved the tutorials! The most useful and understandable I found on youtube (and I really watched quite a lot, as I really need to learn it). Thank you so much!
@trevorbaird89787 жыл бұрын
I spent hours and hours with failures until I heard your comment that the filename of the function must be the same as the function name. Thank you, thank you!
@MyThundermuffin7 жыл бұрын
VERY useful and helpful video Jake. Thank you !
@chekz123111 жыл бұрын
Cheers for this, easy and clear explanation of what I was looking for. Thanks.
@najibahmadi77059 жыл бұрын
Hi there! I just wanna say that your tutorial is really useful and helps a lot! Thank you
@MrZvensk5 жыл бұрын
Usefull and well presented.
@RZ100009 жыл бұрын
great tutorial Have a midterm about this stuff and you make things clear now it is time to practice Thanks.
@numericalmethodschemcmaste608410 жыл бұрын
Hey all, sorry I don't monitor this channel anymore... I am thinking of recording and uploading some vids soon on some requested topics. FOR THIS VIDEO - I suggest maximizing the screen and playing it in 1080p (it was recorded in HD and should not be a problem). If you have a 1920 x 1080 monitor you should be able to see all of the text clearly. Hope that helps!
@wgeorge160210 жыл бұрын
hi! I really like your tutorial and your accent, why not come back and do more tutorials?
@mcmoppie00710 жыл бұрын
Numerical Methods ChE McMaster So you know anything about MEX-files, specifically calling FORTRAN77?
@notusnotus95479 жыл бұрын
+Numerical Methods ChE McMaster Hello , -74% coupon to Learn Matlab Udemy course Couponcode: MATLAB25 www.udemy.com/learn-matlab/?couponCode=MATLAB25
@doug_silva7 жыл бұрын
Best MatLab tutorial on youtube! thanks!
@chrissmith64708 жыл бұрын
Great tutorials! Helped me 100 times more than my professor. They should pay you!!! ^_^
@barbaracarnauba15074 жыл бұрын
Very good explanation! Thanks!
@arachnid836 жыл бұрын
Thanks for keeping it simple. Kudos.
@melmeja10 ай бұрын
U are a brave lecturer!
@MariaGMateo10 жыл бұрын
Hey, thanks a lot for this video! it is the best introduction to functions I have had!
@lortoncdip52692 жыл бұрын
Thank you Numerical Methods Jake!
@shafiq72pk5 жыл бұрын
Great work. God bless u
@ulquiorracifer2217 жыл бұрын
Thanks fam. You the real MVP
@comedifiED10 жыл бұрын
Very helpful video, thank you!
@mashallahyousefzadeh791210 жыл бұрын
Thanks, grate MatLab tutorial.
@danteeep7 жыл бұрын
amazing video mate
@danteeep7 жыл бұрын
even the bananas comment you made helped me ! you have a talent
@alwarsamyramasamy47248 жыл бұрын
Nice....Could understand easily...
@aquavita110 жыл бұрын
Great tutorial! Thank you
@ricieritonelli11 жыл бұрын
Nice tutorial, bro! It really helped me a lot! =)
@rubigarcia53234 ай бұрын
thank you! you saved me
@alial-khulaifi562310 жыл бұрын
You da real mvp bro!
@sureshjadhav86028 жыл бұрын
very nice for calling function
@paymanjanbakhsh297111 жыл бұрын
Thank you, very clear and helpful.
@GIOBERTTI19864 жыл бұрын
thanks needed exactly this!
@aznagkarima34869 жыл бұрын
Thank you soo much you saved my life!!!
@TheAlireza6428 жыл бұрын
Nice job. Thanks a lot.
@alisultan797810 жыл бұрын
Thats great. Thank you so much
@moonsgarden62810 жыл бұрын
nice tutorial!
@bhawnajyoti20004 жыл бұрын
very helpful
@giotapanagiotopoulou64787 жыл бұрын
it helps me a lot....thank you so much :D
@kuzgun_TR3 жыл бұрын
I am working on a trim determination procedure with iterative actions and unknowns. The main scheme of the system is that the known values, which are calculated as a result of iterative actions, are sent to the pairs of equations to find the unknown values and these equations will be solved with a nonlinear solver, for example fsolve. The main point here is that after these sets of equations are solved, unknown values should be found and used to update the known values in the first stage. Then the known values will be used as input in the nonlinear solver and this cycle will continue until the iterative process is finished. The main goal is to reach the convergent unknown values at the end of this procedure. Now I have written the lines of code that should be used as an input parameter in the solver as a script. What are your suggestions for me to transfer these input parameters to the solver and to create new input parameters for the solver by transferring the values from the solver back to the script file? How do I call the values from the f solve function in the script and send the input parameters back as a result of the calculations for the f solve function to use. It is a structure that constantly feeds each other?
@mazin1668 жыл бұрын
very useful, good declaration
@Tott918 жыл бұрын
thanks man, helped out alot
@ryans642310 жыл бұрын
gotta love the sound of a rainfall in the background.......
@landlordj119 жыл бұрын
I don't understand what the command "box on" does on 9.56 Nice videos, they really helped me!!!!
@ramapatipatra53842 жыл бұрын
awsome
@eliefant63536 жыл бұрын
how would i write a function rect = rect_aperture(r1, c1, r2, c2) that constructs a rectangular aperture on a 512 by 1024 grid? so the top left (r1,c1) and bottom right (r2,c2)?
@ahmedsyed43356 жыл бұрын
Thank you
@frankh30576 жыл бұрын
thank ya yayyyyy :)
@mohanada108610 жыл бұрын
Hi, is there any tutorial like this on how to use '' quad command '' and " fsolve ". thnkas
@mladityaavadhani537 жыл бұрын
How to create function which perform date function My intention is , user can Abel to enter the date like 20161230(yyyymmdd format) the code /function can Abel to display next date r previous date , Plz help me in MATLAB code and creating own function
@mdiqbal71684 жыл бұрын
Difference between script and function in matlab gui
@sadafaydh90438 жыл бұрын
can any one help me to open the built in function of matlab like the function expcdf
@abgmacho375510 жыл бұрын
is there any tutorial like this on scilab. Please someone reply to me
@niuniu94217 жыл бұрын
Very nice video! I copied the plot code. So if somebody needs a draft as I do, here you go: x = -5:0.01:5; figure; hold on; plot(x,y ‘r-o‘, ‘LineWidth‘, 2); %r: RED plot(x,z ‘k-o‘, ‘LineWidth‘, 2); %k: BLACK xlabel(‘X‘); ylabel(‘Y and Z‘); title(‘Write in plot title‘); legend(‘2sin(x) - 1‘, ‘1.5*cos(x) + 2‘); box on; legend(‘boxoff‘); hold off;
@joseguzman46826 жыл бұрын
Great topic but would you please zoom out the screen. it is imposible to see what you are typing.
@StrangeParticl10 жыл бұрын
it is great and thank you for that I hope that you help me in wrting my code for DWT on image... Please I am in need of that welling to have your answer soon Zee
@hisamk674011 жыл бұрын
Without seeing ur vedio clearly, how can we evaluate...?
@joshuavisagie92788 жыл бұрын
we all know its you, Jesse Eisenburg
@AllenAK496 жыл бұрын
Oh hey lol!
@vALIentsInfoTech7 жыл бұрын
For more understanding watch this video: kzbin.info/www/bejne/qmeTZ2WErNljgKc
@mrinmoysaha82805 жыл бұрын
ross geller
@garyhilson722011 жыл бұрын
good stuff but hard to read. too small
@wgeorge160210 жыл бұрын
Chinese?
@wgeorge160210 жыл бұрын
really really good tutorial, much better than the Matlab official tutorial!!!