Gistlib Logo

gistlib

read a excel file and search for each column the smallest number between row 8960 and 9000 in matlab

main.m
data = xlsread('your_file.xlsx', 'A8960:A9000');
min_value_column1 = min(data);

data = xlsread('your_file.xlsx', 'B8960:B9000');
min_value_column2 = min(data);

% Repeat the above for other columns as needed
209 chars
8 lines

similar matlab code snippets

minimam algorithm in matlab
how to automaticaally replace the values of a multidimensional structure comparing its value to the equivalent entries in an excel file and replacing them in matlab
save image to file in matlab
import data from .xlsx in matlab
write array to animated gif in matlab
function that returns the minimum elements of an array in matlab
find nearest value in array in matlab
reading .raw file i in matlab
change the values of a 4 dimension structure automatically from data in an excel file in matlab
read a text file in matlab

related categories

matlab
excel
file-i/o
search
minimum

gistlibby LogSnag