Borrar filtros
Borrar filtros

how to vectorize a function?

13 visualizaciones (últimos 30 días)
Xizeng Feng
Xizeng Feng el 29 de Jun. de 2021
Respondida: Xizeng Feng el 30 de Sept. de 2024 a las 12:39
I ran the following and got some reply:
>> y=@(x)x^2;
>> fplot(y)
警告: 函数处理数组输入时行为异常。要改善性能,请将您的函数正确向量化,以返回大小和形状与输入参数相同的输出。
> In matlab.graphics.function.FunctionLine>getFunction
In matlab.graphics.function.FunctionLine/updateFunction
In matlab.graphics.function.FunctionLine/set.Function_I
In matlab.graphics.function.FunctionLine/set.Function
In matlab.graphics.function.FunctionLine
In fplot>singleFplot (line 237)
In fplot>@(f)singleFplot(cax,{f},limits,extraOpts,args) (line 192)
In fplot>vectorizeFplot (line 192)
In fplot (line 162)
>>
What is the problem?

Respuestas (2)

埃博拉酱
埃博拉酱 el 28 de Sept. de 2024 a las 8:13
^是矩阵幂运算,你这里需要的应该是元素幂运算.^

Xizeng Feng
Xizeng Feng el 30 de Sept. de 2024 a las 12:39
thanks a lot!

Categorías

Más información sobre Big Data Processing en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!