Bonjour

Je cherche a traduire ce code matlab sur scilab.

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
 
Excel = ole_actxserver("Excel.Application");
range1  = sprintf('%c%d','A'+1,7);
range2  = sprintf('%c%d','A'+1,7+size(res_simulation,1)-1);
range3  = sprintf('%c%d','A'+1+size(res_simulation,2)-1,7);
range4  = sprintf('%c%d','A'+1+size(res_simulation,2)-1,7+size(res_simulation,1)-1);
Excel.ActiveSheet.Range([range1 ':' range2 ':' range3 ':' range4]).Value = res_simulation;
Pour information sur matlab

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
range1  = sprintf('%c%d','A'+1,7);
range1=B7
Merci d'avance