I want to create a conditional function

79 ビュー (過去 30 日間)
Deniz Bozdogan
Deniz Bozdogan 2021 年 2 月 23 日
コメント済み: Sameer khan 2024 年 1 月 17 日
When i try to create the following function with n=[-25:25] the value of x1 shows as x1=-3
if 0<=n<=8
x1=-3
else
x1=0
What can i do to make the function work?

採用された回答

KALYAN ACHARJYA
KALYAN ACHARJYA 2021 年 2 月 23 日
編集済み: KALYAN ACHARJYA 2021 年 2 月 23 日
You have not completed the Code, If you are beginner Do Google MATLAB Onramp
Read about if Else, For Loop and Logical Indexing MATLAB
Using if else and loop
n=-25:25;
x1=zeros(1,length(n));
for i=1:length(n);
if n(i)>=0 && n(i)<=8
x1(i)=-3;
else
x1(i)=0;
end
end
x1
Without using loop and if else (Recommended)
n=-25:25;
x1=zeros(1,length(n));
x1(n>=0 & n<=8)=-3;
  4 件のコメント
Steven Lord
Steven Lord 2023 年 3 月 21 日
@SRADHARAM SWAIN This doesn't appear to be closely related to the original topic of this question. Please ask it as a new question (using the Ask link near the top of this page.) When you do, please show us the code you've written to try to solve the problem and ask a specific question about where you're having difficulty and we may be able to provide some guidance.
If you aren't sure where to start because you're not familiar with how to write MATLAB code, I suggest you start with the free MATLAB Onramp tutorial to quickly learn the essentials of MATLAB.
If you aren't sure where to start because you're not familiar with the mathematics you'll need to solve the problem, I recommend asking your professor and/or teaching assistant for help.
Sameer khan
Sameer khan 2024 年 1 月 17 日
function [S Q]=testsalary(TT,BS);
BS=BS*12;
Q=[];
S=[];
for k=1:length(TT)
if TT(k)<=30000
Q{k,1}={'Bad'};
S(k,1)=BS;
elseif (TT(k)>30000) & (TT(k)<=40000)
Q{k,1}={'Average'};
S(k,1)=BS;
else
Q{k,1}={'Good'};
S(k,1)=BS+500;
end
end

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeProgramming についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by