3

我正在开发一个带有 gui 的 MATLAB 程序。我想要法语的文本标签和按钮,但它不起作用。例如,代码中的单词“Paramètres”在 gui 上变成了Paramètres

我检查了文件编码,它是 utf-8。我能做些什么来解决这个问题?

这是我在代码中使用的一个命令的简单示例: tab2 = uitab('v0', hTabGroup, 'title','Paramètres des canaux');

谢谢。

4

6 回答 6

2

使用 HTML 怎么样?:

figure
hTabGroup = uitabgroup;
drawnow;
tab2 = uitab('v0',hTabGroup,'title','<html>Param&egrave;tres des canaux</html>');

有关 HTML 字符代码的列表,请参见此处

于 2013-07-04T15:18:33.677 回答
1

我在这个 stackoverflow 页面上找到了答案。基本上,我只需MATLAB在创建 GUI 之前将编码设置为 UTF-8。命令很简单:

feature('DefaultCharacterSet','UTF-8');

就是这样!

于 2013-07-04T16:23:31.673 回答
1

添加重音 aigu 使用

title('{Param\''etres des canaux}','interpreter','latex')

添加重音坟墓使用

 title('{Param\`etres des canaux}','interpreter','latex')
于 2013-07-04T14:48:37.900 回答
0

我已经用这种技术解决了这个问题。

在您的终端中写下:

export LC_CTYPE="en_US.ISO-8859-1"

然后,启动 Matlab 并尝试:

title('été');

如果可行,您只需要在启动 Matlab 之前创建一个将执行导出命令的脚本。在您的 .bashrc 文件、启动 Matlab 的自定义脚本等中...

我的解决方法是简单地创建一个自定义脚本(即在我的 /home/username/bin 目录中的“mat”):

#!/bin/bash
cd /home/username/Matlab
export LC_CTYPE="en_US.ISO-8859-1"
/path/to/matlab/matlab

然后,我在 /home/username 目录的 .bashrc 文件中创建了一个别名来启动脚本“mat”

alias m="/home/proy/bin/mat &"
于 2014-08-21T18:41:26.070 回答
0

我在将字符串从 SO 复制粘贴到 MATLAB 时遇到困难,因为“è”出于某种原因显示为char(65533)(而不是正确的)...char(232)

无论如何,我将一个小型转换实用程序组合在一起,将字符串或单元字符串转换为它们的 Unicode-in-HTML 等效项,以补充 horchler 的回答:

function html = toHTML(strings)

    %% Initialize

    % Basic IO check
    if ~iscellstr(strings) && ~ischar(strings)
        error(...
            'toHTML:invalid_input',...
            ['Invalid input class: ''%s''.\n',...
            'Supported input types are ''char'' or a ''cell'' containing ''char''.'], class(strings));
    end

    % Provide support for
    %  - Single and multiline line char arrays    
    %  - Cellstrings
    wasChar = ischar(strings);
    if wasChar 
        if size(strings,1) > 1            
            strings(:, end+1) = char(10);            
        end
        strings = {strings}; 
    end

    %% Convert all strings to their unicode representation in HTML

    % Just for abbreviation 
    uf = {'UniformOutput',false};

    % Convert all characters to their HTML unicode representation 
    html = cellfun(@transpose, strings, uf{:});
    html = cellfun(@(x) cellstr(num2str(x(:)+0)), html, uf{:});
    html = cellfun(@(x) cellfun(@(y) ['&#' strtrim(y) ';'],x, uf{:}), html, uf{:});

    % Include HTML tags
    html = cellfun(@(x) ['<html>' [x{:}] '</html>'], html, uf{:});

    % Take care of newlining
    html = regexprep(html, '&#10;', '<br>');
    html = regexprep(html, '<br></html>$', '</html>');

    % Make output type consistent with input type
    if wasChar
        html = [html{:}]; 
    end

end

我目前也将其提交给 FEX。如果有人知道这样的事情是否已经存在,请告诉我。

于 2013-07-05T12:26:27.827 回答
0

如果它在一个 matlab 脚本中,您存储带有重音字符的字符串,请尝试将您的 matlab 脚本的编码更改为 ANSI(例如,使用 Notepad++ 或 SublimeText)。

于 2017-06-29T22:51:24.637 回答