Gistlib Logo

gistlib

open the .mat-file with the name of 'priceenergy2020', give for each column the smallest value in matlab

main.m
data = load('priceenergy2020.mat');
minValues = min(data.priceenergy2020);
disp(minValues);
92 chars
4 lines

similar matlab code snippets

opening .raw file from directory in matlab
min and max functions in matlab
index the minimum value in a matrix in matlab
find the three smallest values in a vector in matlab
how to calculate the moving minimum of a vector in matlab
use min and max to compare the roots for lower and upper limit in matlab
how do i use fprintf in matlab
code to select one image each from multiple directory in matlab
range of the input in matlab
how to calculate the minimum of a vector in matlab

related categories

matlab
file-handling
min

gistlibby LogSnag