Dear all, how can one insert the values of a string vector into a latex-formatted string?
Example: myLabels = [ 'label1'; 'label2'; ....; label_n]; // myLabels = vector of strings I am struggling by trying to use the entries of myLabel as automatic generated LaTex-labels for x_ticks. for i = 1: nrOfLabels str = myLabels(i); a.x_ticks.labels(i)="$\rotatebox{90} {str}$"; // this will write "str" in latex format and 90° rotated to each label positionend Of course it is possible to type {str} by hand for each label. But as the labels might change from plot to plot this is not really an option. Any idea? Thank you, Philipp
_______________________________________________ users mailing list users@lists.scilab.org http://lists.scilab.org/mailman/listinfo/users