How to get an y-value (y1(x)) for the sub condition of 0.8y1=0.25x

2 次查看(过去 30 天)
Hi there,
i need some help. I have two collum vectors y=force and x=settlement. Now i had to write a scribt which gives me the first y-value (y1(x)) where the subcondition: 0.8*y1=0.25x is true. I am not so familar whith loops and so I would need some help.
Thank you!
  4 个评论
Alexander Busch
Alexander Busch 2019-7-30
sry...
now it is this problem:
>> x=zeros(length(weg_fit_mm),1);
for
i=1+1:kraft_fit_kN(end);
x(i)=weg_fit_mm(find(0.8*kraft_fit_kN(i)))/weg_fit_mm(find(kraft_fit_kN(i)));
end
I=min(abs(x-0.25));
end
for
Error: Invalid expression. Check for missing or extra characters.

请先登录,再进行评论。

采纳的回答

Vimal Rathod
Vimal Rathod 2019-8-2
In the code from the above comments, there is a problem with defining the for loop condition as the error was shown.
The 'i' variable should be defined in the same line as the for. And the value should not have a semicolon(;) at the end.
Here is a sample in the code which you could try.
for i=1:kraft_fit_kN(end)
You could refer to the following documentation for further details;

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by