フィルターのクリア

How to check whether my input argument vector is in uint8 form or not?

2 ビュー (過去 30 日間)
Harsha Vemula
Harsha Vemula 2017 年 5 月 14 日
回答済み: Walter Roberson 2017 年 5 月 14 日
When I am writing the code for lzw algorithm.. It shows an error when I am checking whether my input argument vector is a uint8 or not?
Code:
function[output,table]=norm2lzw(vector,maxTableSize,restartable)
If ~isa(vector,'uint8')
Error('input argument must be a uint8 vector')
End
.................
Error is being shown here.!
Any help will be really handy :)

回答 (1 件)

Walter Roberson
Walter Roberson 2017 年 5 月 14 日
function [output, table] = norm2lzw(vector, maxTableSize, restartable)
if ~exist('vector', 'var') || ~isa(vector, 'uint8')
error('input argument must be a uint8 vector')
end

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by