• C++ Programming for Financial Engineering
    Highly recommended by thousands of MFE students. Covers essential C++ topics with applications to financial engineering. Learn more Join!
    Python for Finance with Intro to Data Science
    Gain practical understanding of Python to read, understand, and write professional Python code for your first day on the job. Learn more Join!
    An Intuition-Based Options Primer for FE
    Ideal for entry level positions interviews and graduate studies, specializing in options trading arbitrage and options valuation models. Learn more Join!

optimization problem??

Joined
9/12/08
Messages
3
Points
11
hi everyone,

i m facing the following problem.

i have around 10000 rows of data. i have to find minimum of each row. If i use excel solver, i have to run solver 10000 times, ofcourse impossible. any ideas how to find minima of each row in an efficient manner using may be Matlab.

regards,

umar.
 
erm... if you have the data in excel, can't you simply use =min(A1:A10) to find the minimum of each row, where in this example A is the current row of data and you have values in the columns numbered 1-10?

that would get the minimum of each row and be very quick, or am i misunderstanding you?
 
Back
Top