フィルターのクリア

How to properly use varargout and nargout?

5 ビュー (過去 30 日間)
Victoria Gonzalez Canalle
Victoria Gonzalez Canalle 2020 年 3 月 23 日
編集済み: Sriram Tadavarty 2020 年 3 月 24 日
Hi! I need to calculate the bits and nibbles from an input of bytes. If the functions expects two outputs, the it will calcualtion the nibles. But of not, it will calculate the bits. My code looks like this:
function [varargout] = bytes2bits(bytes)
% write your solution here:
if nargout == 2
varargout{1} = bytes./8;
varargout{2} = bytes./32;
else
varargout{1} = bytes./8;
end
end
and the error that I am getting (from the eudcational platform) is:
Function failed when calculating bits with one output.
  3 件のコメント
per isakson
per isakson 2020 年 3 月 24 日
No problems here
>> bytes2bits( 64 )
ans =
8
>> [a1,a2] = bytes2bits( 64 );
>> [a1] = bytes2bits( 64 );
>>
Sriram Tadavarty
Sriram Tadavarty 2020 年 3 月 24 日
編集済み: Sriram Tadavarty 2020 年 3 月 24 日
The code seems correct.
However, you can try this
if nargout == 2
varargout{1} = bytes./8;
varargout{2} = bytes./32;
elseif nargout == 1
varargout{1} = bytes./8;
end

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

回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by