switch true case x>=0 & x<65 y = 0; case x>=65 & x<95 y = 0.0001*x^3-0.0052*x^2+0.2*x-3.047; case x>=95 & x<120 y = 3.5; case x>=120 & x<145 y = 0.0006*x^2-0.0386*x+1.0116; otherwise y = 0; end用matlabfunction写一个daima
时间: 2023-12-10 07:04:31 浏览: 85
以下是用MATLAB Function写的代码:
```matlab
function y = myFunction(x)
% switch case语句
switch true
case x>=0 & x<65
y = 0;
case x>=65 & x<95
y = 0.0001*x^3-0.0052*x^2+0.2*x-3.047;
case x>=95 & x<120
y = 3.5;
case x>=120 & x<145
y = 0.0006*x^2-0.0386*x+1.0116;
otherwise
y = 0;
end
end
```
这个函数的输入参数为x,根据x的值计算出y的值。根据x的不同取值,y的计算方式也不同,使用switch case语句来实现。
相关问题
把这段ifelse判断语句改成switch语句if x>=0 && x<65 y = 0; elseif x>=65 && x<95 y = -3*10^(-8)*x^6+2*10^(-5)*x^5-0.0037*x^4+0.4151*x^3-25.883*x^2+852.98*x-11605; elseif x>=95 && x<120 y = 3.5; elseif x>=120 && x<145 y = 1*10^(-8)*x^6-1*10^(-5)*x^5+0.0047*x^4+111.03*x^2-6621.6*x+161919; else y = 0; end
以下是将该ifelse判断语句改写成switch语句的代码:
```
switch true
case x>=0 && x<65
y = 0;
case x>=65 && x<95
y = -3*10^(-8)*x^6+2*10^(-5)*x^5-0.0037*x^4+0.4151*x^3-25.883*x^2+852.98*x-11605;
case x>=95 && x<120
y = 3.5;
case x>=120 && x<145
y = 1*10^(-8)*x^6-1*10^(-5)*x^5+0.0047*x^4+111.03*x^2-6621.6*x+161919;
otherwise
y = 0;
end
```
以上代码使用了`switch`语句,将不同的条件分支放在`case`中,并在最后使用`otherwise`表示其他情况(即`else`的情况)。注意,`case`后面的条件判断应该是返回一个`true`或`false`的表达式。
请修正这段代码ExMessage msg; while (true) //鼠标消息 { if (peekmessage(&msg,EM_MOUSE)) { switch (msg.message) { case WM_LBUTTONDOWN: if (msg.x >= 540 && msg.x <= 610&&msg.y >= 45 && msg.y <= 80) { int num = 0; std::thread t(user.timeflow,std::ref(num)); while (true) { std::this_thread::sleep_for(std::chrono::milliseconds(500)); } t.join; user.startlight(); } else if (msg.x >= 540 && msg.x <= 610&&msg.y >= 45 && msg.y <= 80) { user.stop(); } else if (msg.x >= 540 && msg.x <= 610&&msg.y >= 45 && msg.y <= 80) { user.add(); } break; default: break; } } }
ExMessage msg;
while (true) //鼠标消息
{
if (PeekMessage(&msg, NULL, EM_MOUSE, EM_MOUSE, PM_REMOVE))
{
switch (msg.message)
{
case WM_LBUTTONDOWN:
if (msg.x >= 540 && msg.x <= 610 && msg.y >= 45 && msg.y <= 80)
{
int num = 0;
std::thread t(&User::timeflow, std::ref(user), std::ref(num));
while (true)
{
std::this_thread::sleep_for(std::chrono::milliseconds(500));
}
t.join();
user.startlight();
}
else if (msg.x >= 540 && msg.x <= 610 && msg.y >= 85 && msg.y <= 120)
{
user.stop();
}
else if (msg.x >= 540 && msg.x <= 610 && msg.y >= 125 && msg.y <= 160)
{
user.add();
}
break;
default:
break;
}
}
}
修正后的代码考虑了以下几个问题:
1. 使用了大写字母的函数名改为小写字母,如 peekmessage 改为 PeekMessage。
2. 使用了 PM_REMOVE 标志来从消息队列中移除已经处理的消息。
3. switch-case 语句中的每个 case 语句都对应了一个不同的按钮事件。
4. 创建了一个 std::thread 对象 t,并将它作为第一个参数传递给 user.timeflow() 函数,同时传递了 num 参数的引用。
5. 在创建线程后,使用 while 循环来保持主线程的运行,直到用户点击了 startlight 按钮。
6. 在 while 循环结束后,使用 t.join() 来等待子线程执行完成。
7. 通过添加 user 对象来调用相应的成员函数。
阅读全文