function that checks multiple numbers

5 ビュー (過去 30 日間)
Reynaldo Ponce
Reynaldo Ponce 2019 年 3 月 15 日
コメント済み: madhan ravi 2019 年 3 月 15 日
%Greetings, Id like to write a function that will check multiple numbers in a %matrix insted of a single number. For example I have this function
function [output] = my_func(input)
output=[]
if mod(sqrt(input),1)==0
output=sqrt(input)
else
output=floor(input/3)
end
%but Id like to make it check multiple numbers instead of one?
  1 件のコメント
madhan ravi
madhan ravi 2019 年 3 月 15 日
doc varargin
doc varargout

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

回答 (1 件)

KSSV
KSSV 2019 年 3 月 15 日
function [output] = my_func(input)
output = zeros(size(input)) ;
c = mod(sqrt(input,1)) ;
idx = c==0 ;
output(idx) = sqrt(input(idx)) ;
output(~idx) = floor(input(~idx)/3) ;
You need to re think on this line:
mod(sqrt(input),1)==0
  3 件のコメント
Reynaldo Ponce
Reynaldo Ponce 2019 年 3 月 15 日
sounds good sir. So i'd like to check a whole matrix or two numbers or five numbers like this...
my_func(1,2,81)
KSSV
KSSV 2019 年 3 月 15 日
make input a matrix.

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

カテゴリ

Help Center および File ExchangeCorrelation and Convolution についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by