In the simulink I have a short transmission line model. Now I want the data of the load be imported from excel file.
But in the help section of matlab, they state that the file must be in form of
TIME DATA
0.2 1000
0.4 1500
0.6 800
And use of xlsread() function.I did that and got the data in matrix form.
But I want that the simulink should get data 1000, simulate it, output the result and then get data 1500 and again simulate ...so on and so forth. I am doing this because the data is of 100 rows, and it is humanly impossible and boring to every time change the value of a block in simulink.
So is it possible to import one data set, simulate it, o/p its results(maybe in excel file), and then take another data set and again simulate it...?