How to import excel data into MATLAB | 3 ways to load data from excel to matlab | MATLAB TUTORIALS

preview_player
Показать описание
How to import excel data into MATLAB or 3 ways to load data from excel to matlab and plot graph is a video in MATLAB TUTORIALS video lecture series. Basically there are 3 ways to load data from excel to matlab and that is presented here in this video. The initial section of the video explains How to load excel to matlab and then how to import table data and individual variable from excel file. So this section is all about importing data from excel sheet to matlab and then plot a graph form that data. The other method to load excel data in to matlab is using matlab command and script file. This section explains matlab script to import data from excel. The command used for this is xlsread finally how to load excel from other folder that is also explain in this video.

Check out our other video on our channel page

Introduction to MATLAB

MATLAB variables and matrix

Workspace in MATLAB

Basic arithmetic operations in MATLAB

Beginning with script writing in MATLAB

How to use Plot function in MATLAB
How to plot multiple graph in MATLAB

How to display output variable with text in MATLAB

How to give user input in matlab script

___________________________________________________________________________
YouTube

Facebook page
Learning vibes
Learning vibes electrical engineering

Facebook group
Learning Vibes

Telegram
Group
Channel

Instagram account
___________________________________________________________________________

#Excel_MATLAB #Import_Excel_MATLAB
#MATLAB_Tutorial
Рекомендации по теме
Комментарии
Автор

I had Fortran in ~1979, never had to write code as an engineer in industry, and I am teaching MatLAB with 4 week's notice at the semester break. This was extremely helpful! I look forward to watching your other tutorials to help me stay a week ahead of my students.

peggyjones
Автор

Thank sir, after this video, it is clear how to load and reads the files,

subodhkumarsuman
Автор

sir, can you make a video regarding how to generate equation from excel data (framing of equation)

ragipindiamarnathreddy
Автор

if I want to read multiple sheets from the same book, then graph just a range of each sheet how can I do it? thanks!

majito
Автор

Sir code you are writing to plot graph was not clear....sir..can you please tell the syntax

vaishnavibk
Автор

If I want to access from D9 to end of D column, how can I do it ?

sanketnarkhede
Автор

a = 1:n
sum_a = 0
for i = 1:lenght(a)
sum_a = sum_a + a(i)
end
B = sum_a)
C = B*2
disp(C)

lollolovic
Автор

data = import data
X = load("datoteka.cvs")
Rezultati = [0, 0, 0, 0, 0];
For i = 1:500
Rezultati(x(i)) = Rezultati(x(i)) + 1

X=[1, 2, 3, 4, 5]
Plot(x, rezultati, ´linewidth´, 3);

lollolovic