Posts

Showing posts from March 22, 2019

Villers-le-Sec, Meuse

Image
An Villers-le-Sec amo in usa ka komyun ha departamento han Meuse ngan ha rehiyon han Lorraine ha nasod han Fransya. k h l Mga komyun ha departamento han Meuse Abainville  · Abaucourt-Hautecourt  · Aincreville  · Amanty  · Ambly-sur-Meuse  · Amel-sur-l'Étang  · Ancemont  · Ancerville  · Andernay  · Apremont-la-Forêt  · Arrancy-sur-Crusne  · Aubréville  · Aulnois-en-Perthois  · Autrécourt-sur-Aire  · Autréville-Saint-Lambert  · Avillers-Sainte-Croix  · Avioth  · Avocourt  · Azannes-et-Soumazannes  · Baâlon  · Badonvilliers-Gérauvilliers  · Bannoncourt  · Bantheville  · Bar-le-Duc  · Baudignécourt  · Baudonvilliers  · Baudrémont  · Baulny  · Bazeilles-sur-Othain  · Bazincourt-sur-Saulx  · Beauclair  · Beaufort-en-Argonne  · Beaulieu-en-Argonne  · Beaumont-en-Verdunois  · Beausite  · Behonne  · Belleray  · Belleville-sur-Meuse  · Belrain  · Belrupt-en-Verdunois  · Beney-en-Woëvre  · Béthe

Change arguments of a product of functions

Image
2 $begingroup$ I am trying to do the following with rule-based pattern matching (f1[t] f2[t] f3[t]) /. {x__ -> n[ Product[x[[i, 0]][om[i]], {i, 3}]]} // Quiet which gives me the output n[f1[om[1]] f2[om[2]] f3[om[3]]] . However, it seems as if one cannot specify parts of a pattern MMA gives the error messages "Part specification x[[1,0]] is longer than depth of object" I would like to do the operatoration for a product of n arbitrary functions f1[t] ... fn[t] where the number of functions is automatically detected (I cannot use Length as well). How would one do it correctly? pattern-matching share | improve this question asked 3