mustBeTextScalar
说明
示例
验证输入是文本标量
创建一个名为 text
的字符串数组,然后使用 mustBeTextScalar
验证值。mustBeTextScalar
会引发错误,因为该变量包含多个字符串。
text = ["this" "will" "throw" "an" "error"]; mustBeTextScalar(text)
Value must be a character vector or string scalar.
限制参量值
使用 mustBeTextScalar
来限制函数接受的输入参量值。您可以通过向验证输入参量的函数添加参量代码块来实现这一点
此函数将参量 textScalarInput
的值限制为文本值。
function MyFunction(textScalarInput) arguments textScalarInput {mustBeTextScalar} end end
调用该函数。MATLAB® 对分配给参量的值调用 mustBeTextScalar
。mustBeTextScalar
会发出错误,因为值 ["foo","bar"]
不是文本标量。
MyFunction(["foo","bar"])
Error using MyFunction MyFunction(["foo","bar"]); ↑ Invalid argument at position 1. Value must be a character vector or string scalar.
输入参数
value
— 要验证的值
标量 | 数组
要验证的值,指定为标量或数组。如果 value
不是 1×1 字符串数组、""
或 <missing>
字符串、行向量字符数组或 ''
,mustBeTextScalar
将引发错误。
示例: mustBeTextScalar('foo')
扩展功能
C/C++ 代码生成
使用 MATLAB® Coder™ 生成 C 代码和 C++ 代码。
版本历史记录
在 R2020b 中推出
MATLAB 命令
您点击的链接对应于以下 MATLAB 命令:
请在 MATLAB 命令行窗口中直接输入以执行命令。Web 浏览器不支持 MATLAB 命令。
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)