フィルターのクリア

Latex in plot title with variables

35 ビュー (過去 30 日間)
Peppe
Peppe 2017 年 9 月 23 日
回答済み: Peppe 2017 年 9 月 23 日
Hi, I'm running Matlab R2014b. Trying to make a nice plot with :
title([' Slip regulation \lambda for K_{\sigma} = ',num2str(Ksigma),' K = ', num2str(K),' and \epsilon = ', num2str(theta)]);
Tried even with
title([' Slip regulation \lambda for K_{\sigma} = ',num2str(Ksigma),' K = ', num2str(K),' and \epsilon = ', num2str(theta), 'Interpreter','tex' ]);
Still no luck. Would someone help me out ? Thanks in advanced.

採用された回答

Peppe
Peppe 2017 年 9 月 23 日
Solved it using:
mytitleText = [' Slip regulation \lambda for K_{\sigma} = ',num2str(Ksigma),' K = ', num2str(K),' and \epsilon = ', num2str(theta)];
title(mytitleText,'Interpreter','tex' );

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSubplots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by