Octave Tutorial #6: Scatter and Line Plotting for Absolute Beginners

  Рет қаралды 67,872

Mr. STEM EDU TV

Mr. STEM EDU TV

Күн бұрын

Пікірлер: 43
@Robson-dh3un
@Robson-dh3un 3 жыл бұрын
You're saving lives Sr. ! Thank you !
@WreckisituS
@WreckisituS 3 жыл бұрын
What an awesome video. I wasn't sure about it at first but definitely the best video I have seen on Octave.
@mr.stemedutv5514
@mr.stemedutv5514 3 жыл бұрын
Glad to hear that it helped!
@georgosal8432
@georgosal8432 2 жыл бұрын
Thank you my friend .....You helped me with an important project RESPECT MY DUDE !!!!!!!!!!!!!!!
@felipealexandre9313
@felipealexandre9313 3 жыл бұрын
Thank you Mr. This video was very helpful to me
@КонстантинМозговой-ф4п
@КонстантинМозговой-ф4п 3 жыл бұрын
Спасибо большое за ваши уроки!!!
@mr.stemedutv5514
@mr.stemedutv5514 3 жыл бұрын
Your welcome!
@mr.stemedutv5514
@mr.stemedutv5514 4 жыл бұрын
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!
@allison2025
@allison2025 3 жыл бұрын
Morning Sir. May I know how can I find the multiple intersection points from the graph I have plotted?
@joaopedrolourencoaffonso2168
@joaopedrolourencoaffonso2168 3 жыл бұрын
THANKS! VERY USEFUL!
@mr.stemedutv5514
@mr.stemedutv5514 3 жыл бұрын
You are welcome!
@instantshamim
@instantshamim 3 жыл бұрын
great tutorial easy to understand and follow instructions...
@arashmidnahal6166
@arashmidnahal6166 3 жыл бұрын
Very helpful! Thank you.
@mr.stemedutv5514
@mr.stemedutv5514 3 жыл бұрын
No problem at all!
@masoncamera273
@masoncamera273 2 жыл бұрын
Great tutorial
@RafaParkoureiro
@RafaParkoureiro 3 жыл бұрын
Very thanks! have a physics test tomorrow need to use this shaYT
@mr.stemedutv5514
@mr.stemedutv5514 3 жыл бұрын
Good luck!! Please let me know if you need me to make any other tutorial video.
@tomyddd
@tomyddd 2 жыл бұрын
thanks a lot dude:)
@JukkritKluabwang
@JukkritKluabwang 3 жыл бұрын
Good tutorial
@mr.stemedutv5514
@mr.stemedutv5514 3 жыл бұрын
Glad to hear that it helped!
@apostolis866
@apostolis866 4 жыл бұрын
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.stemedutv5514
@mr.stemedutv5514 4 жыл бұрын
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)
@apostolis866
@apostolis866 4 жыл бұрын
@@mr.stemedutv5514 thanks a lot! The command 'hold on' did the trick. brgds.
@avagosiewski2018
@avagosiewski2018 3 жыл бұрын
How to shadowed the area above 2 intercepted lines?
@Melcor2304
@Melcor2304 4 жыл бұрын
Can you explain about the set() command, and specifically about gca?
@mr.stemedutv5514
@mr.stemedutv5514 4 жыл бұрын
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.
@rowifi
@rowifi 3 жыл бұрын
@@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.
@fayefarahmand3375
@fayefarahmand3375 7 ай бұрын
Why the tutorials in the play list are not in order?! It starts with tutorial #2. Also, where is tutorial 16?
@dianaperez4368
@dianaperez4368 3 жыл бұрын
how to make Y-baseline?
@franciscomiranda3239
@franciscomiranda3239 3 жыл бұрын
How to read a csv files and image import??
@pauldirac6243
@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?
@prathameshbhosale31
@prathameshbhosale31 4 жыл бұрын
How to shift the wave in y or X direction
@mr.stemedutv5514
@mr.stemedutv5514 4 жыл бұрын
I think you can try, t_d = pi; t = linspace(0,pi); y=sin(t-t_d); plot(t,y); Hope this helps.
@nebuladus7850
@nebuladus7850 4 жыл бұрын
Happy Holidays💚💥🙏💥❤
@mr.stemedutv5514
@mr.stemedutv5514 4 жыл бұрын
Thanks, same to you!!
@Melcor2304
@Melcor2304 4 жыл бұрын
Hi, can you paste the codes into the gnu octave editor and run it from there?
@mr.stemedutv5514
@mr.stemedutv5514 4 жыл бұрын
Yes, I will do in next video. Thx for your comment!
@liutom8220
@liutom8220 2 жыл бұрын
Hello, i want to know which version your Octave is? Mine is Octave 3.8.0 and it operates differently from yours.
@mr.stemedutv5514
@mr.stemedutv5514 2 жыл бұрын
I was using 6.3.0 at the time of recording. However, the latest version is 7.1.0.
@Paull520
@Paull520 3 жыл бұрын
how do i make the axis have an increment of 0.2
@mr.stemedutv5514
@mr.stemedutv5514 3 жыл бұрын
I think you can watch at 13:25 to customize the ticks. Hope this helps.
@Paull520
@Paull520 3 жыл бұрын
@@mr.stemedutv5514 thanks
@franciscomiranda3239
@franciscomiranda3239 3 жыл бұрын
Simulation and predictors
Octave Tutorial #4 - Plotting Data
25:48
DrapsTV
Рет қаралды 160 М.
1% vs 100% #beatbox #tiktok
01:10
BeatboxJCOP
Рет қаралды 67 МЛН
Quilt Challenge, No Skills, Just Luck#Funnyfamily #Partygames #Funny
00:32
Family Games Media
Рет қаралды 55 МЛН
Что-что Мурсдей говорит? 💭 #симбочка #симба #мурсдей
00:19
Cheerleader Transformation That Left Everyone Speechless! #shorts
00:27
Fabiosa Best Lifehacks
Рет қаралды 16 МЛН
Octave Tutorial #8: Writing Scripts and Functions for Absolute Beginners
16:46
Octave Tutorial: Linear, Quadratic, and Polynomial Curve fitting
10:35
Manila’s Most Expensive Buffet!! Filipino Fine Dining!!
18:59
More Best Ever Food Review Show
Рет қаралды 6 МЛН
Octave Tutorial #3: Vectors for Absolute Beginners
8:37
Mr. STEM EDU TV
Рет қаралды 27 М.
Octave Tutorial #1: Getting Started for Absolute Beginners
7:40
Mr. STEM EDU TV
Рет қаралды 76 М.
Octave Tutorial #4: Matrices and Indices for Absolute Beginners
6:34
Mr. STEM EDU TV
Рет қаралды 23 М.
Octave Tutorial #5: Matrix Operations for Absolute Beginners
7:48
Mr. STEM EDU TV
Рет қаралды 25 М.
1% vs 100% #beatbox #tiktok
01:10
BeatboxJCOP
Рет қаралды 67 МЛН