What an awesome video. I wasn't sure about it at first but definitely the best video I have seen on Octave.
@mr.stemedutv55143 жыл бұрын
Glad to hear that it helped!
@georgosal84322 жыл бұрын
Thank you my friend .....You helped me with an important project RESPECT MY DUDE !!!!!!!!!!!!!!!
@felipealexandre93133 жыл бұрын
Thank you Mr. This video was very helpful to me
@КонстантинМозговой-ф4п3 жыл бұрын
Спасибо большое за ваши уроки!!!
@mr.stemedutv55143 жыл бұрын
Your welcome!
@mr.stemedutv55144 жыл бұрын
Hope this tutorial video is useful for you who would like to learn Matlab and GNU Octave, and please let me know if you have any questions and comments!
@allison20253 жыл бұрын
Morning Sir. May I know how can I find the multiple intersection points from the graph I have plotted?
@joaopedrolourencoaffonso21683 жыл бұрын
THANKS! VERY USEFUL!
@mr.stemedutv55143 жыл бұрын
You are welcome!
@instantshamim3 жыл бұрын
great tutorial easy to understand and follow instructions...
@arashmidnahal61663 жыл бұрын
Very helpful! Thank you.
@mr.stemedutv55143 жыл бұрын
No problem at all!
@masoncamera2732 жыл бұрын
Great tutorial
@RafaParkoureiro3 жыл бұрын
Very thanks! have a physics test tomorrow need to use this shaYT
@mr.stemedutv55143 жыл бұрын
Good luck!! Please let me know if you need me to make any other tutorial video.
@tomyddd2 жыл бұрын
thanks a lot dude:)
@JukkritKluabwang3 жыл бұрын
Good tutorial
@mr.stemedutv55143 жыл бұрын
Glad to hear that it helped!
@apostolis8664 жыл бұрын
Hi , Season greetings! I find your videos very useful. I am looking for a way to display (plot) a function and stem at the same graph window. How can I do that?
@mr.stemedutv55144 жыл бұрын
Why don't you try this script? Hope this helps. >> x1=linspace(0,2*pi); >> y1=sin(x1); >> plot(x1,y1) >> x2=linspace(0,2*pi); >> y2=cos(x2); >> hold on >> stem(x2,y2)
@apostolis8664 жыл бұрын
@@mr.stemedutv5514 thanks a lot! The command 'hold on' did the trick. brgds.
@avagosiewski20183 жыл бұрын
How to shadowed the area above 2 intercepted lines?
@Melcor23044 жыл бұрын
Can you explain about the set() command, and specifically about gca?
@mr.stemedutv55144 жыл бұрын
set function is to handle figure property. See the details here. octave.sourceforge.io/octave/function/set.html. gca is the handling id to handle currently active figure. Hope this helps.
@rowifi3 жыл бұрын
@@mr.stemedutv5514 I didn't see any reference to 'gca' in that link. What I found elsewhere is gca()... used with parentheses. However your example had none. Suddenly from following the tutorial you lost me at that point. You should pause to explain something like gca as you introduce it otherwise its a stumbling block.. especially for absolute beginners.
@fayefarahmand33757 ай бұрын
Why the tutorials in the play list are not in order?! It starts with tutorial #2. Also, where is tutorial 16?
@dianaperez43683 жыл бұрын
how to make Y-baseline?
@franciscomiranda32393 жыл бұрын
How to read a csv files and image import??
@pauldirac6243 Жыл бұрын
Are you actually "docking" the figure in this video. Whereas I can dock a figure to the main window on MATLAB, I haven't been able to find a way to do it in Octave. Is there a way?
@prathameshbhosale314 жыл бұрын
How to shift the wave in y or X direction
@mr.stemedutv55144 жыл бұрын
I think you can try, t_d = pi; t = linspace(0,pi); y=sin(t-t_d); plot(t,y); Hope this helps.
@nebuladus78504 жыл бұрын
Happy Holidays💚💥🙏💥❤
@mr.stemedutv55144 жыл бұрын
Thanks, same to you!!
@Melcor23044 жыл бұрын
Hi, can you paste the codes into the gnu octave editor and run it from there?
@mr.stemedutv55144 жыл бұрын
Yes, I will do in next video. Thx for your comment!
@liutom82202 жыл бұрын
Hello, i want to know which version your Octave is? Mine is Octave 3.8.0 and it operates differently from yours.
@mr.stemedutv55142 жыл бұрын
I was using 6.3.0 at the time of recording. However, the latest version is 7.1.0.
@Paull5203 жыл бұрын
how do i make the axis have an increment of 0.2
@mr.stemedutv55143 жыл бұрын
I think you can watch at 13:25 to customize the ticks. Hope this helps.