필터 지우기
필터 지우기

How can I get the Y value at once?

조회 수: 2 (최근 30일)
민제 강
민제 강 2021년 7월 13일
답변: Image Analyst 2021년 7월 13일
function Y = objectivefunction (X)
x1 = ;
x2 = ;
x3 = ;
x4 = ;
Y = x1*x4*[x1+x2+x3]+x3;
end
There are 20 x1, x2, x3 and x4 respectively.
I want to get 20 Y value.
I want to import data through Excel or Table.
Please let me know. Thank you.

채택된 답변

Image Analyst
Image Analyst 2021년 7월 13일
Did you try this:
t = readtable('x1x2x3x4.xlsx')
x1 = t.x1;
x2 = t.x2;
x3 = t.x3;
x4 = t.x4;
Y = x1 .* x4 .* (x1 + x2 + x3) + x3;

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Spreadsheets에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by