how do i bold certain characters in a vector?

7 visualizzazioni (ultimi 30 giorni)
Francisco del Bosque
Francisco del Bosque il 19 Giu 2018
Commentato: Stephen23 il 20 Giu 2018
I am trying to bold an i,j, and k for vector equations. How can I do this using fprintf?
p=[-1,7,-3]; v=[5,12,-7];
syms t
vec=p+t*v
fprintf('The vector equation for the line is %si+%sj+%sk\n and the parametric equations are x= %s,\ny= %s, z=%s',vec,vec)
thanks!

Risposte (1)

Steven Yeh
Steven Yeh il 19 Giu 2018
You can try Element Style tag:
fprintf(['The vector equation for the line is %s', ...
['<strong>i</strong>'], ...
'+%s', ...
['<strong>j</strong>'], ...
'+%s', ...
['<strong>k</strong>'], ...
'\n and the parametric equations are x= %s,\ny= %s, z=%s\n'],vec,vec)
This can bolden the three characters: i, j, k
  2 Commenti
OCDER
OCDER il 19 Giu 2018
Oh, this does work! Nice - didn't realize there was this feature.

Accedi per commentare.

Prodotti


Release

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by