フィルターのクリア

Is there any easy way to change x*y production to x.*y production?

2 ビュー (過去 30 日間)
frwmetric
frwmetric 2013 年 6 月 3 日
Is there any easy way to change x*y production to x.*y production? Hi I have huge function.m result and I numerically integrate it with quad code. but in my result, production is like x*y but for quad code I need to write them x.*y but result is really big so it is not easy and also maybe it leads to problem when I change them by hand. Therefore do you know any easy method to change them?

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2013 年 6 月 3 日
syms u v
y=2*u*v+u^2*sin(v)
z=strrep(char(y),'*','.*')

その他の回答 (2 件)

Matt J
Matt J 2013 年 6 月 3 日
編集済み: Matt J 2013 年 6 月 3 日
The VECTORIZE command might be applicable,
>> vectorize('x*y')
ans =
x.*y

Iain
Iain 2013 年 6 月 3 日
Find and replace?

Community Treasure Hunt

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

Start Hunting!

Translated by