我有以下功能,旨在为特定像素设置颜色。
function val = xyz(p)
if (p(2,2)) == 40
val=[255,0,0];
end
end
我不确定该函数在分配颜色时是否正确,因为我在调用该函数时收到以下错误:
Output argument "val" (and maybe others) not assigned during call to.....
我该如何解决这个问题?
谢谢。
我有以下功能,旨在为特定像素设置颜色。
function val = xyz(p)
if (p(2,2)) == 40
val=[255,0,0];
end
end
我不确定该函数在分配颜色时是否正确,因为我在调用该函数时收到以下错误:
Output argument "val" (and maybe others) not assigned during call to.....
我该如何解决这个问题?
谢谢。