how i can import specific rows from excel and than use that row in equations MATLAB .
2 次查看(过去 30 天)
显示 更早的评论
hI all;
i want to import x rowfrom excel file but those values of x which is greater than 200 not all ,second how i can use this x value in equation like y=3*x+12 in matlab.
0 个评论
回答(1 个)
Jon
2020-10-5
You can use the matlab command readmatrix to get the data in from Excel (type doc readmatrix on the command line for details)
This will return all the values in your spreadsheet, not just the ones where x > 200. However if you have now put these into a variable, let's call it x, you can get just those values using something like:
x = x(x>200)
to evaluate the expression you have just use
y = 3*x + 12
Just as you already have it written
11 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Spreadsheets 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!