Тёмный

Import Data and Analyze with MATLAB 

APMonitor.com
Подписаться 76 тыс.
Просмотров 681 тыс.
50% 1

Data are frequently available in text file format. This tutorial reviews how to import data, create trends and custom calculations, and then export the data in text file format from MATLAB. Source code is available from apmonitor.com/che263/uploads/M...

Наука

Опубликовано:

 

26 апр 2014

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 292   
@IYoseff
@IYoseff Год назад
You are a wonderful teacher, 8 years and countless updates later yet your tutorial still stands!
@JohnDoe-l1kmya5s
@JohnDoe-l1kmya5s 5 лет назад
Thanks for this video. Thank you for being brief and clear.
@TEAMEXAM24
@TEAMEXAM24 7 лет назад
thank you sir.. its because of you i am able to complete my final year project.
@bhartiyasainikjindabad7737
@bhartiyasainikjindabad7737 5 лет назад
From where we can get a data file
@syedmufasir2175
@syedmufasir2175 5 лет назад
@Bushra Noor-ul-ain i am getting error can you help
@bhaskarojha7100
@bhaskarojha7100 4 года назад
thank you very much i was facing the problem since 2 days,now its solved
@JesusLopez-ms6wi
@JesusLopez-ms6wi 2 года назад
You sir saved my behind on an Engineering lab, thank you!
@apm
@apm 2 года назад
🤣Glad to hear that it helped!
@saptdy
@saptdy 3 года назад
Thanks a lot for the easiest solution of the problem! From India!
@Earth098
@Earth098 6 лет назад
This helped me a lot. Many thanks!!!!!!!!!!!
@dragoon1983
@dragoon1983 6 лет назад
Thanks dude. It really helped me
@sandeeptamber9525
@sandeeptamber9525 7 лет назад
You saved my life
@Truthonlyify
@Truthonlyify 4 года назад
Thank You very much for brief and simple presentation
@Grumman353
@Grumman353 8 лет назад
Bardzo dobre :) polecam Thank You very much :)
@MahadoSalah
@MahadoSalah 8 лет назад
Quite useful! Thanks a lot
@muhammedfayaz83
@muhammedfayaz83 5 лет назад
Thanks, very useful to me
@yuxiangswjtu
@yuxiangswjtu 8 лет назад
Thank you very much for such a useful and neat tutorial.
@apm
@apm 8 лет назад
Thanks!
@ahmeddiaa7409
@ahmeddiaa7409 6 лет назад
thx ….you saved my file
@apm
@apm 6 лет назад
I'm glad it worked for you.
@manojg4451
@manojg4451 6 лет назад
Great Tutorial
@reubenroy
@reubenroy 3 года назад
Thank you kind sir. You have made easy a daunting task
@SonGoku-rl9qf
@SonGoku-rl9qf 3 года назад
great video. Thank you sir.
@anirudhpunganur3767
@anirudhpunganur3767 7 лет назад
Really well scripted. Thanks
@jonathanuis
@jonathanuis 4 года назад
Awesome, thanks!
@SulemanAnsariPPH
@SulemanAnsariPPH 3 года назад
thanks for sharing your work
@brian_mcnulty
@brian_mcnulty 5 лет назад
Slick demonstration.
@apm
@apm 5 лет назад
Thanks!
@panchaminayak9850
@panchaminayak9850 6 лет назад
could you please tell me where you got the data? It would help a lot. Thanks!
@xRageAgainstMachines
@xRageAgainstMachines 8 лет назад
Sooo helpful!!
@indiankid27
@indiankid27 8 лет назад
Thank you!!!
@theguymonk7440
@theguymonk7440 4 года назад
Thank you!
@basavaveeraveni4198
@basavaveeraveni4198 5 лет назад
Thank you sir
@ziedmahjoub3797
@ziedmahjoub3797 8 лет назад
Thanks for showing us how we can analyse data with Matlab ! I would appreciate if you give me an explanation about how we can import data online from an SQL server ! Thanks
@apm
@apm 8 лет назад
+Zied Nouir Mahjoub I don't have a video on SQL statements but here is some information online: www.mathworks.com/help/database/run-sql-query.html and www.mathworks.com/help/database/ug/create-a-query-using-a-matlab-variable.html
@abdulrahmanmagdy6158
@abdulrahmanmagdy6158 6 лет назад
Thanks!
@meghabillure2612
@meghabillure2612 8 лет назад
sir, suppose i have single column of 16 values, if i want to represent these values as 4x4 matrix, then how to do it..?
@apm
@apm 8 лет назад
I'd recommend the reshape function: www.mathworks.com/help/matlab/ref/reshape.html
@rayho_
@rayho_ 7 лет назад
thanks for the info! how can I implement a search feature that would bring up the value I want to associate with each name given (say, gene accession number with the name of a gene). I'm sorry if this is very simple, but I'm brand new to programming!
@apm
@apm 7 лет назад
+ray ho, look at functions such as strfind and strcmp. Once you find the name, you can look up the associated value or use the index to go onto the next step.
@Akatsuki_Aoiro
@Akatsuki_Aoiro 7 лет назад
sir if i had two different sensors data which are sampled at different rate and i want to plot in single graph i want calculate difference??
@apm
@apm 7 лет назад
+Saeed Muhammad, you have a couple different options. (1) create an interpolation of your data and compare the functions that fit your data (see apmonitor.com/che263/index.php/Main/MatlabDataRegression or www.mathworks.com/help/matlab/ref/spline.html). (2) compare nearest data points by finding one value that is close to the time in the other list (see stackoverflow.com/questions/8089031/how-do-i-find-values-close-to-a-given-value)
@Akatsuki_Aoiro
@Akatsuki_Aoiro 7 лет назад
thanks allot sir for yours reply
@kisore7921
@kisore7921 8 лет назад
can you explain why i get an error like this? Traceback (most recent call last): File "", line 1, in data[0:4] NameError: name 'data' is not defined
@apm
@apm 8 лет назад
+kisore hari It is probably because the file import wasn't successful. Take a look at the companion video to this one (on Python), starting here: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-Tq6rCWPdXoQ.htmlm38s This is a MATLAB tutorial but you appear to be using Python.
@engr.ibrahimabdul-alim7386
@engr.ibrahimabdul-alim7386 8 лет назад
I found this tutorial very interesting, i really need your help on how to import and excel data into matlab and develop a linear, non linear regression model and ANN (Artifial neural network) with the imported data. Thank you looking forward fro your responce
@apm
@apm 8 лет назад
+ABDUL ALIM IBRAHIM I don't have a tutorial on ANNs specifically but here are some on linear and nonlinear regression: apmonitor.com/che263/index.php/Main/MatlabDataRegression
@AlbrechtJ
@AlbrechtJ 9 лет назад
Thanks.
@fionacameron5442
@fionacameron5442 7 лет назад
Hi, do you know how you would find the x values which cross a plot at y=0, really struggling! Thanks
@apm
@apm 7 лет назад
+Fiona Cameron, you can do a linear regression (apmonitor.com/che263/index.php/Main/MatlabDataRegression) and then set y=0 and solve for x in the equation for a line: y=slope x + intercept.
@deeksharai2563
@deeksharai2563 6 лет назад
Am doing my project on import analysis so that I need find reasons for fluctuations in imports ... Whether I can find using multiple regression
@apm
@apm 6 лет назад
There are multiple courses that teach regression concepts (basic to advanced) here: apm.byu.edu I recommend starting with this material: apmonitor.com/che263/index.php/Main/MatlabDataRegression
@angelabremi1527
@angelabremi1527 5 лет назад
Hello, I have a zipfile(named proposal) that contains 3 different devices and each device has a list of voltages from (0 volts - 10 volts) and each of these voltages has a very long list of currents(numbers only), how can I use the data from all 3 devices(device1, 2 & 3) to calculate the Autocorrelation for each signal, calculate the Fourier Transform of the Autocorrelation for each signal and the Fast Fourier Transform for each signal. With time = 10^-15. Everything I tried hasn't worked. Thanks.
@apm
@apm 5 лет назад
I recommend that you try this function for autocorrelation: www.mathworks.com/help/econ/autocorr.html I also like to use the svd function to determine the degree of correlation between the signals. The relative magnitude of the singular values is the thing that you want to use to determine if the signals are unique versus just scaled values of each other. Here is help on the fft function: www.mathworks.com/help/matlab/ref/fft.html
@mashitahcherazali7895
@mashitahcherazali7895 3 года назад
Thanks sir for the great explanation. Btw I really need your help, actually I got data file in .mat format which are 1 input data (4000x1) and 2 output data (4000x2). How can I use these data in order to get the transfer function model? I already used the 'iddata' command, but some how I'm not sure how to determine the number of pole and the number of zero.
@apm
@apm 3 года назад
Here is information on obtaining a model from data: apmonitor.com/do/index.php/Main/ModelIdentification
@hamzaalbaze8926
@hamzaalbaze8926 9 лет назад
Thank you but how to select aset of primary dependent variable and plting four graohes of different secondary dependent variable derived from the set of primary dependent variable
@apm
@apm 9 лет назад
hamza albazr One thing that I didn't show in the tutorial is how to create an inline function. Here is one example of plotting derived variables where the dependent variables may not have been known before the function was defined. y = @(t) t.^2; % create a function y(t) = t^2 t = linspace(0,10); % create a vector t with 100 points between 0 and 10 plot(t,y(t)); % create a plot with t and y(t) In the case of the tutorial video, you could select a sub-set of the times (first 5 rows) with time = sensors(1:5,1), s1 = sensors(1:5,2), s2 = sensors(1:5,3), s3 = sensors(1:5,4) and then an average with avg = @(v1,v2,v3) (v1+v2,v3)/3. You should be able to plot with the command plot(time,avg(s1,s2,s3)). Please let me know if this doesn't answer your question or if you have another question.
@kimberlyn8302
@kimberlyn8302 3 года назад
I am able to run my calculation when I enter in my row value as { : , 2 }, but I want to only use rows in increments of 10. I would assume this would look something like { 1:10, 2} however I keep getting an error message. Please advise! Thank you!
@apm
@apm 3 года назад
Try something like this: Your_array{1:10:end,2}
@Krishnay447
@Krishnay447 7 лет назад
thank you
@BlinkTF2
@BlinkTF2 7 лет назад
hello! i've been trying to import some special functions that my teacher gave me to practice Matlab, but i've been struggling to load the functions into my workspace. The error says that ""Number of columns on line 1 of ASCII file (my file directory) must be the same as previous lines."", and i feel like i am loading the functions badly because Matlab thinks they're supposed to be ASCII files when they're not: how do you think i could fix this? is that the actual problem or is it something else? thanks in advance, have a nice day!
@apm
@apm 7 лет назад
+BlinkTF2, for functions you should use the addpath command. Place your functions in a directory and then include something like addpath('c:/my_functions'). You should then be able to use the functions in that directory.
@Islamallam99
@Islamallam99 7 лет назад
sir, when i plotting there is an error occurs, "Vectors must be the same length." ps: i took 6 values of data with the all column of time.
@rrc
@rrc 7 лет назад
Islam, you may need to transpose one of your data vectors so that you have the same number of rows. You can see the size of each thing you are trying to plot with the "size" function: www.mathworks.com/help/matlab/ref/size.html. Make sure that x and y have the same dimensions. You can use the command "hold on" to plot multiple data sets on the same plot.
@slimjim_l7936
@slimjim_l7936 4 года назад
Try adding an ‘ to the vector. It’s probably because one is a column and one is a vector
@rasikadilhani8342
@rasikadilhani8342 9 лет назад
I am using matlab 2011b and when I try to import my excel file like this it does not work. My excel file contain separate column as date+ time (this is one column Eg. 1/2/2013 12.30am) , Region (text) , and Power (number) . Pls help me to import my excel file to matlab.
@apm
@apm 9 лет назад
Rasika Dilhani You probably need to select in Excel the Save As option and save the file as a txt or csv file. There is also a xlsread function in MATLAB if you'd like to read an Excel file directly: www.mathworks.com/help/matlab/ref/xlsread.html
@rasikadilhani8342
@rasikadilhani8342 9 лет назад
APMonitor.com Thank you so much. Now it works properly. I waste too much my time to do this. Your guideline help me to success this matter.
@Rainstorm121
@Rainstorm121 3 года назад
Thanks sir. After I load my .mat file into the editor. How can I read each variable column in my dataset?
@apm
@apm 3 года назад
You can read a data column with disp(x(:,2)) for the second column. The : indicates the second column.
@mictorioz9580
@mictorioz9580 7 лет назад
Sir, is there any way by which I can use or export the plotted graph as a signal in Simulink?
@apm
@apm 7 лет назад
Mehfooz Ali, here is some help on importing data into Simulink: apmonitor.com/che436/index.php/Main/ProjectProgramming (see the first example).
@zishanhyder8580
@zishanhyder8580 5 лет назад
helpful
@rashidkhalil5384
@rashidkhalil5384 2 года назад
I am using a Benewake LIDAR TF mini plus and it is working perfectly via UART but I want to use it using TTL converters. I used Termite and the data is unreadable, can you guide me a little on what is the best way to use it with TTL converters?
@apm
@apm 2 года назад
What type of TTL converter are you trying to use? Here is something I found online: "UARTs transmit one bit at a time at a specified data rate (i.e. 9600bps, 115200bps, etc.). This method of serial communication is sometimes referred to as TTL serial (transistor-transistor logic). Serial communication at a TTL level will always remain between the limits of 0V and Vcc, which is often 5V or 3.3V."
@kwesi4812
@kwesi4812 8 лет назад
I am a first time user of matlab and am trying to use Matlab to analyse torque at the ankel of the leg after conditioning it with some stretching protocols and using a dynamometer to measure and collect data of force at angle of 5,10,15.. How do i calculate the torque at sey 5deg?
@apm
@apm 8 лет назад
Check out the optimization course material at apmonitor.com/me575 under the application project section. There was one project that was similar to yours at apmonitor.com/me575/uploads/Main/2013_Knee_Simulator.pdf
@muslimgirl66
@muslimgirl66 6 лет назад
how can I use POS tagger and SentiWord in MATLAB for opinion mining/TextMining and feature extraction??? dataset is in excel extracted by twitter..
@apm
@apm 6 лет назад
This is easy with Python or NodeRed but I haven't tried it with MATLAB. Here is another question that you may want to follow to see if Mathworks provides an answer: www.mathworks.com/matlabcentral/answers/130100-sentiment-analysis-and-opinion-mining
@joezakarya7293
@joezakarya7293 7 лет назад
Hello sir , i use import tab from the Toolstrip , but my file contains both texts and numbers so i have to customize the selection by A , B , C ,... rows , is there a way to save this customized settings so i dont have to do it all over again every time i import data from these text files , as those texts files all have the same format so it will be easier if i could save my selection settings , Thank you
@apm
@apm 7 лет назад
+Youssef Zakaria, one way to avoid this is to import the data as a cell array and then you don't need to differentiate between numbers and text. www.mathworks.com/help/matlab/cell-arrays.html
@nehasinghjaswal
@nehasinghjaswal 2 года назад
Thank you for this wonderful video Sir. I would appreciate it if you help me out with the following problem solution. After loading the dataset I want to select only the rows in which Response time is 3 cost is
@apm
@apm 2 года назад
You could create a loop and select only those rows that have that condition. Alternatively, it is easy to do this with Python (Pandas package): apmonitor.com/pds/index.php/Main/CleanseData
@alaanghazi292
@alaanghazi292 8 лет назад
I want insert data to neural network as two dimensional ,so for example i have two group T and B .T have one raw and 10 column and B also same , so i want both of this data become as one input but 2-Dimensional and target also it will be same process .my question are neural network accept (2-D input , 2-D target) and if it's accept how i can do this process in matlab ,thank you for your help.
@apm
@apm 8 лет назад
Alaan, check out the ANN (artificial neural network) toolbox. It will help you fit a model. However, you may find that an ANN model extrapolates poorly. With such a small system (2 x 2) you may find other forms that extrapolate better such as a first principles model or better empirical approaches. Make sure you keep a separate data set for validation.
@engr.ibrahimabdul-alim7386
@engr.ibrahimabdul-alim7386 8 лет назад
Hello Prof, the dataset i have are 45x11 dataset which i want to modelled it inn matlab using linear and non linear regression, i need your help with a tutorial that i can be able to modelled it. Thank you
@apm
@apm 8 лет назад
+ABDUL ALIM IBRAHIM How many inputs and outputs do you have in your data? If you only have 1 or 2 outputs (and 10 or 9 inputs) then it may be possible to model. With only 45 data points, the results may not be very good because there can be more unknown parameters than data points. Is there a possibility to get more data?
@engr.ibrahimabdul-alim7386
@engr.ibrahimabdul-alim7386 8 лет назад
+APMonitor.com Thank you for your responce sir, it is possible for me to attached the data for you to see it yourself? its a data collected from ABU, Zaria, teaching Hospital for Short Insulin Tolerance Test, I want to identify the model from the data to analyse Glucose-insulin kinetics. Thank you
@apm
@apm 8 лет назад
+ABDUL ALIM IBRAHIM Your data looks very interesting. You may be able to do an analysis similar to the one found here: www.ncbi.nlm.nih.gov/pmc/articles/PMC2628038/ We also have some mechanistic models for Type-I diabetes but I'm assuming that the data you sent were for Type-II diabetics. What is the dosage of insulin delivered as part of the test? You need this information as well to develop a model from the step test data.
@namasteygermany9867
@namasteygermany9867 7 лет назад
Hello again could you please tell me that why there is a different in answers when I am converting a vector in complex form one by one with that when I am using a for loop to do the same type of calculation. Individually I am getting its real and imaginary part but when put in a loop its showing only the real part and because of this my further calculation is affected.
@apm
@apm 7 лет назад
+Shikha Singh, here are some functions that may help you with imaginary numbers: www.mathworks.com/help/matlab/complex-numbers.html I'd recommend that you enter debug mode and step through the first couple cycles of your loop to have a more detailed look at what is changing.
@namasteygermany9867
@namasteygermany9867 7 лет назад
there is an error in this statement E = [elec(:,4)+elec(:,5)*i elec(:,6)+elec(:,7)*i elec(:,8)+elec(:,9)*i]; instead of giving ans in terms of a+bi, its is giving only a how to overcome this problem?
@apm
@apm 7 лет назад
Shikha Singh, is this statement in a loop? Your syntax looks correct to me. One problem could be if "i" is defined as your loop variable then you are redefining the definition of an imaginary number. Either use a different iterator in your "for" or "while" loop or else switch to "j" for your imaginary number.
@namasteygermany9867
@namasteygermany9867 7 лет назад
I have to store 80 values in an array with 10 rows and 8 columns using statement poyndb = 10*log10(modu) - 3 array_poyndb(k) = poyndb; and then finding average using array_poyndb(k) = poyndb; could you tell me is there a problem in this statement?
@musabara6269
@musabara6269 7 лет назад
Sir, my dataset contains 6 columns and 19 rows in CSV format. But whenever I import it to MATLAB it will turn the rows to columns and vice versa. How can I make it to read the data? Thank you Sir.
@rrc
@rrc 7 лет назад
you can transpose the data after importing data = data'
@musabara6269
@musabara6269 7 лет назад
Thank you Sir. If I have further question, I can still ask.
@alec5335
@alec5335 4 года назад
I was trying to plot the data but it said there was an error in color/linetype, I pretty much copied exactly what you did to get a better feel of matlab, so I'm not sure why it was not working.
@apm
@apm 4 года назад
Try copying the code from here: apmonitor.com/che263/index.php/Main/MatlabPlots specifically at apmonitor.com/che263/index.php/Main/MatlabPlots?action=sourceblock&num=1 or apmonitor.com/che263/index.php/Main/MatlabPlots?action=sourceblock&num=2
@apm
@apm 4 года назад
You can get the source files for this problem from: apmonitor.com/che263/uploads/Main/matlab_data_analysis.zip
@asifnizamani7513
@asifnizamani7513 6 лет назад
i have excel file and i want use data in kalmen filter code in measurement matrix from script how can i do it
@apm
@apm 6 лет назад
+Asif Nizamani, Here is an example Kalman filter script: www.mathworks.com/matlabcentral/fileexchange/5377-learning-the-kalman-filter
@mezourachahinez5721
@mezourachahinez5721 4 года назад
How Can i download data of ball bearings ( base de données de roulement )
@apm
@apm 4 года назад
Maybe a Google search?
@mezourachahinez5721
@mezourachahinez5721 4 года назад
Je ne trouve pas la base de données de roulement
@apm
@apm 4 года назад
@@mezourachahinez5721 Does this help? www.ntnamericas.com/en/website/documents/brochures-and-literature/catalogs/ntn_a1000xi_ball_and_roller_bearings_lowres.pdf
@hamidrezanaseri3546
@hamidrezanaseri3546 5 лет назад
hello, professor, I would like to simulate human detection by hog and Inriaperson dataset .my dataset contains train and test part and in each part have pos and neg what should I do?? how should I load this huge dataset??
@apm
@apm 5 лет назад
I'd recommend loading each file individually and then perform the training and testing / validation. Alternatively, you can load one file and then parse out the training and test data. Here is a related example but in Python: apmonitor.com/do/index.php/Main/DeepLearning
@raghunathsinghrajpurohith4894
@raghunathsinghrajpurohith4894 2 года назад
💥
@yaminajouili2987
@yaminajouili2987 6 лет назад
using matlab 2012a and I need install compiler c++ under matalb.Can you help please!!Hi,I am
@apm
@apm 6 лет назад
There are many good resources online such as www.mathworks.com/help/matlab/matlab_external/choose-c-or-c-compilers.html
@94afifah
@94afifah 7 лет назад
Hello sir, I have a problem with importing data. Let's say I have a 5 set of data. Each data contain 50 values. so how I am gonna do to create a benchmark and combine it in a workspace for each set?
@apm
@apm 7 лет назад
After you import the data files, you can combine them with combined_data = [data1 data2 data3 data4 data5] for column oriented data or combined_data = [data1; data2; data3; data4; data5] for row oriented data.
@rahulkatike6837
@rahulkatike6837 3 года назад
sir, I have 200 x,y coordinates, can i generate a matrix in matlab using those coordinates? from that matrix again I want to generate an Image, Is that possible in Matlab??
@apm
@apm 3 года назад
Try a meshgrid www.mathworks.com/help/matlab/ref/meshgrid.html I'm not sure about images
@karthia6373
@karthia6373 3 года назад
How to open and view the DAT.file which is in binary image format as well as table text format.
@apm
@apm 3 года назад
Try imopen: www.mathworks.com/help/images/ref/imopen.html
@madhumithaj7394
@madhumithaj7394 6 лет назад
Sir what if i want to process the data in time attribute.Like time has a set of data ,in which if anyone of the data is higher than some threshold value print some information.
@apm
@apm 6 лет назад
This may help: www.mathworks.com/matlabcentral/answers/29099-importing-formated-time-data-into-matlab
@shrutiawasthi8920
@shrutiawasthi8920 Год назад
How can we convert the raw data (802*2) where 802 is no. Of rows and 2 is no. Of columns into an image?
@apm
@apm Год назад
See the 3D Numpy arrays for information on how to do this with Python: apmonitor.com/dde/index.php/Main/PythonNumpy
@zulkifliarsyad3411
@zulkifliarsyad3411 6 лет назад
cannot load file because have Unknown text on line number 1 of ASCII file..can u help me??
@apm
@apm 6 лет назад
You may have headers that interfere with the numeric value read. I'd recommend either deleting the header row or else looking at a forum post where it discusses reading a text file with headers.
@sherinannabraham1918
@sherinannabraham1918 3 года назад
sir ,if my text file contains some texts in the starting other than numericals how can I aviod that from reading by matlab (Error using ==> load Number of columns on line 1 of ASCII file C:\Users\Sherin Abraham\Downloads\mag\abg20000212dmin.txt must be the same as previous lines.) this is my error message
@apm
@apm 3 года назад
Does this help? www.mathworks.com/matlabcentral/answers/27734-how-can-i-skip-lines-when-loading-a-text-file
@Star-wc2nw
@Star-wc2nw 4 года назад
i want to put data in matlab automatically which i collect them from sensor and at a time by using this data i want to creat a running plot , that means automatically input in matlab and creat a running plot ,sensors will give me data continually and always it will be uploaded in matlab and at a time creating a plot which is running.... how can i do this..?
@apm
@apm 4 года назад
There is an example here: apmonitor.com/heat.htm
@AyushSharma-hm9bm
@AyushSharma-hm9bm 6 лет назад
Sir, I need to implement a similar operation. I need to take the text file, where the text file includes some set of rows for a particular date and some rows for some other dates and so on. Now, i need to take the data corresponding to the required data (the user will enter the date) Please note that the first column of each row contains the date. The Matlab needs to compare first column of each row and if the first column data ie: date of the current row matches with the date entered , then this row will be copied to the a new test file. The code will do this process till the end of the text file, and finally, I will get the required data text file only. Kindly response Regards
@apm
@apm 6 лет назад
+Ayush Sharma, you may need to use a different method such as textscan to read in the date information: www.mathworks.com/help/matlab/import_export/import-formatted-dates-and-times.html Once you import the data, you can use one of these methods to lookup the row: www.mathworks.com/matlabcentral/answers/218033-efficient-method-for-finding-index-of-closest-value-in-very-large-array-for-a-very-large-amount-of-e
@tewachewagumas3946
@tewachewagumas3946 4 года назад
thank s for all
@soumendrasingh1
@soumendrasingh1 8 лет назад
How to handle a time series data with occasional data gaps? for example how to make a weekly average of monthly data file, when data is missing...a loop will land into errors ...please help
@apm
@apm 8 лет назад
+soumendra singh One way to do this is to indicate the missing data as NaN values. Then you can apply the nanmean function to average over the data, ignoring the NaN data (www.mathworks.com/help/stats/nanmean.html). If you don't know if a particular number is missing or not and want to do this as a loop, then use the isnan function to determine which elements are numbers (www.mathworks.com/help/matlab/ref/isnan.html)
@sunlight7498
@sunlight7498 5 лет назад
How I can convert coe file ( generated by ip core in fpga) to image file by using matlab??
@apm
@apm 5 лет назад
Sorry, I don't have experience with COE files.
@gv6980
@gv6980 5 лет назад
Sir, can you please suggest any project that I can start in ML!?
@apm
@apm 5 лет назад
Here is an example to help get you started: apmonitor.com/do/index.php/Main/DeepLearning
@gv6980
@gv6980 5 лет назад
Oh soo much Thank you!!!
@tareqatiany1890
@tareqatiany1890 8 лет назад
hello, how can I generate multivariate random data add percentage of contamination data(outliers)
@apm
@apm 8 лет назад
+Tareq Atiany There is an example of noise, outliers, and drift for contamination of data on the dynamic optimization course web-site here: apmonitor.com/do/index.php/Main/DynamicData (see the example at the bottom).
@mahfouzmahfouz3408
@mahfouzmahfouz3408 6 лет назад
thank you sir . but i want to know how can i make the ANN takes the output of GLCM and make a database for ANN
@apm
@apm 6 лет назад
I recommend that you take a look at the ANN toolbox in MATLAB and the commands related to graycomatrix.
@mahfouzmahfouz3408
@mahfouzmahfouz3408 6 лет назад
okay thanks sir
@kanakasharanya3645
@kanakasharanya3645 3 года назад
sir how to import a excel file to the matlab and how do i access the contents of the excel file in if else condition to complete my code ..please help ..sir
@apm
@apm 3 года назад
Here is a link that helps with Excel: www.mathworks.com/discovery/matlab-excel.html
@nickkeboi
@nickkeboi 8 лет назад
Please, am working on permeability calculation using matlab, how do I create the codes I need to work on this, having my datas
@apm
@apm 8 лет назад
+Chinomso Uche do you also have equations or just data? You can either use a data driven empirical approach where the equation form is determined at the time you perform the regression (e.g. artificial neural network), a correlation that is based on first principles (e.g. ab initio calculations), or a combination of the two.
@nickkeboi
@nickkeboi 8 лет назад
+APMonitor.com I want to run a simple model to simulate the permeability measurement using a given parameters n data. Some of the parameters are constant since I ran the experiment on one core sample but for five time where I had to Chang the flow rate which ended up having a change in the value of the change in pressure and the permeability. So which is the best way to model this on Matlab, am to compare the real values gotten from the experiment and the simulated values from the Matlab.
@cihatguleryuz7493
@cihatguleryuz7493 2 года назад
thanks for sharing.. i have a 3 colomns data. i want to find radius of curvature of this data. Could you help me please ?
@apm
@apm 2 года назад
Here is information on Regression with MATLAB: apmonitor.com/che263/index.php/Main/MatlabDataRegression
@bashirmuhammadjibril3279
@bashirmuhammadjibril3279 9 лет назад
It is an enterprising video for me. But I have a separate problem using data collected to detect malware. How can I input this series of data to SVM in order to generate a result?
@apm
@apm 9 лет назад
Bashir Muhammad Take a look at the SVM documentation here: www.mathworks.com/help/stats/svmtrain.html It appears that there is a particular input format that is required.
@noramiraabubakar8583
@noramiraabubakar8583 8 лет назад
TQ so much, I am calculating ATC Power Flow system, my code blocked given an indication related mpoption.m function, could u please lead me to right solution , TQ
@apm
@apm 8 лет назад
+nor amira abu bakar I'm not familiar with your code. Maybe a paper like ieeexplore.ieee.org/xpl/login.jsp?tp=&arnumber=6559645 can help you.
@bermalharman2454
@bermalharman2454 7 лет назад
I am using matlab 2011b I add to spm in to the matlab but spm not run give me error constatntly error : "undefined function file_array for input arguments of type char" I changed file name this time matlab didnt find spm and I delete all spm file , download and back to add but problem still constient How can I check this problem?
@apm
@apm 7 лет назад
I'm not familiar with the SPM package - is it for analysis of brain images? It appears that the versions available here www.mathworks.com/matlabcentral/linkexchange/links/977 have newer versions (SPM8 or SPM12) - maybe try the newer versions.
@bermalharman2454
@bermalharman2454 7 лет назад
APMonitor.com thank you for attention and for helpful videos ☺️
@namasteygermany9867
@namasteygermany9867 7 лет назад
Sir I am not able to load my text file into Matlab. I have to perform poynting vector calculation on matlab using electrical and magnetic fields real and imaginary part. Could you please help me on this ?
@apm
@apm 7 лет назад
A common error is that the text file has a header and is not just numbers. You may want to try textread (www.mathworks.com/help/matlab/ref/textread.html) or else remove the headers.
@namasteygermany9867
@namasteygermany9867 7 лет назад
I removed the header just kept the numbers in the text file, but its showing like this ??? Error using ==> load Number of columns on line 1 of ASCII file C:\Users\SHIKHA\Desktop\poynting\Monopole800_FFefe.txt must be the same as previous lines.
@apm
@apm 7 лет назад
That is a strange error because line 1 doesn't have any previous lines. I'd recommend that you open the file with a program such as Notepad++ and turn on the option to view all characters. Make sure your numbers are separated by commas or tabs as well.
@namasteygermany9867
@namasteygermany9867 7 лет назад
That error has gone. Could you please tell me to how Plot module and phase in polar coordinates of poynting vector? Which commands to use?
@apm
@apm 7 лет назад
Shikha Singh, check out the programming class at apmonitor.com/che263 There is a section on generating plots in Matlab.
@syedmufasir2175
@syedmufasir2175 5 лет назад
Sir where can i get that dataset of Fault detetcion in WSN >>>
@apm
@apm 5 лет назад
Sorry, I don't have datasets for Wireless Sensor Networks.
@ateflaiche4436
@ateflaiche4436 3 года назад
Nice work sir!! Can you tell me how Can i import striffness Matrix in MATLAB , when i type import('Matk.txt') i have all the Matrix parameters in the same column!!!
@apm
@apm 3 года назад
Try the reshape function: www.mathworks.com/help/matlab/ref/reshape.html
@NehaGupta-qg5cv
@NehaGupta-qg5cv 7 лет назад
sir can you suggest any reference from where i can get that data
@apm
@apm 7 лет назад
+Neha Gupta, here is the top Google search for your request: sccn.ucsd.edu/~arno/fam2data/publicly_available_EEG_data.html
@hariharan-yi8tf
@hariharan-yi8tf 3 дня назад
I will try and update
@hariharan-yi8tf
@hariharan-yi8tf 3 дня назад
It was not worked when tried to import It have not showed any xlsx file only mat files shown
@Bianchi77
@Bianchi77 4 года назад
where can I download the code ? thanks
@apm
@apm 4 года назад
apmonitor.com/che263/index.php/Main/MatlabDataAnalysis
@ramezalotoom7911
@ramezalotoom7911 4 года назад
Do you have an idea for source coding with n gram in matlab?
@apm
@apm 4 года назад
Sorry, I don't know about that one.
@bhavikpatel2387
@bhavikpatel2387 4 года назад
Can you explain that if i want to find equation of the plot which i have plotted then how can i do that???
@apm
@apm 4 года назад
Here is information on regression: apmonitor.com/che263/index.php/Main/MatlabDataRegression
@shylendersingh1682
@shylendersingh1682 7 лет назад
sir where i will get eeg data.....any site for text format
@apm
@apm 7 лет назад
Here are instructions for building your own EEG: www.instructables.com/id/DIY-EEG-and-ECG-Circuit/ or here are some publicly available datasets: sccn.ucsd.edu/~arno/fam2data/publicly_available_EEG_data.html The data appears to be in an rdf format and you'll need a program such as sccn.ucsd.edu/wiki/A01:_Importing_Continuous_and_Epoched_Data to import it. If you can convert it to a text file then you can use MATLAB to manipulate the data or maybe use a program such as EEGLAB for MATLAB: sccn.ucsd.edu/eeglab/
@kavithasenthilkumar4533
@kavithasenthilkumar4533 4 года назад
Sir I m using matlab online how can extract my excel file
@apm
@apm 4 года назад
Does it work to upload your Excel file to drive.matlab.com so that you can import it?
@chextex4147
@chextex4147 2 года назад
Time to finish that report now 🤣
@muqtasidaliawan
@muqtasidaliawan 3 года назад
Thank you sir. I have 6000-36000 values in form of rows. Each time i copy data from excel file to matlab, some of values are shown as NaN, how can i change NaN to numeric values... The data is large and i can't even put every value by hand. Is there any solution?
@apm
@apm 3 года назад
You can type Ctrl-h to open up the dialog box for Find and Replace.
@muqtasidaliawan
@muqtasidaliawan 3 года назад
@@apm Thank you. So I have to change each value separately?
@apm
@apm 3 года назад
@@muqtasidaliawan no - you can select "Replace All"
@muqtasidaliawan
@muqtasidaliawan 3 года назад
@@apm Thank you so much for your reply. It will help. 👌 👍
@maneldjebbar7864
@maneldjebbar7864 8 лет назад
hello, please help me am hopeless its my first time to work with matlab please how can i load my database on matlab (my application is to classify this data using decision trees in matlab) i put my data in text file or execl file??? and how do i load it in matlab for machine learning ??????????
@apm
@apm 8 лет назад
+toukal manel A text file is probably the easiest method to import data. You can also access the database directly: www.mathworks.com/products/database
@ibrahimalameri5128
@ibrahimalameri5128 3 года назад
Dear Sir, its work with tracefile of NS2 please ?
@apm
@apm 3 года назад
You can call a Python function from Matlab. Try this package: pypi.org/project/traceanalyzer/
@ibrahimmusa9348
@ibrahimmusa9348 8 лет назад
I am very new to matlab, my difficulties are how to import data from excel to matlab and running a code to do analysis like PCA ,LDA etc.please I need your help....thanks.
@apm
@apm 8 лет назад
+Ibrahm Musa Here is a link on LDA: www.mathworks.com/matlabcentral/fileexchange/29673-lda--linear-discriminant-analysis and PCA: www.mathworks.com/help/stats/pca.html
@apm
@apm 8 лет назад
One other resource that may help you as a beginner is to visit the Matlab section of my course on computational tools apmonitor.com/che263 Please navigate to the Matlab section for introductory videos.
@dzulfadhlyshaari4575
@dzulfadhlyshaari4575 6 лет назад
Does anyone knows how to average data in column?
@apm
@apm 6 лет назад
+Dzulfadhly Shaari, try: mean (data(:,2)) to get the average of column 2.
Далее
Import Data and Analyze with Python
11:58
Просмотров 268 тыс.
ЛУЧШАЯ ПОКУПКА ЗА 180 000 РУБЛЕЙ
28:28
Boots on point 👢
00:24
Просмотров 2,8 млн
I Missed With The Bottle😂
00:12
Просмотров 5 млн
Financial Modeling Using MATLAB
51:26
Просмотров 15 тыс.
💻 How to import and plot data from EXCEL to MATLAB ?
14:29
Signal Processing with MATLAB
21:11
Просмотров 105 тыс.
Exploratory Factor Analysis
15:25
Просмотров 160 тыс.
Lesson 8.2: Excel files in MATLAB
9:13
Просмотров 114 тыс.
Собери ПК и Получи 10,000₽
1:00
Просмотров 2,6 млн