バックスラッシュを入力したいが¥に変換される。
    10 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
    Yasumaru Hirai
 il 9 Dic 2021
  
    
    
    
    
    Commentato: Yasumaru Hirai
 il 10 Dic 2021
            addpath(C:example)  %このようなプログラムの入力を行いたいが
addpath(C:¥example)  %このような変換が行われ、¥の部分に演算子の使用が無効ですとの表示が出る。
0 Commenti
Risposta accettata
  Kojiro Saito
    
      
 il 9 Dic 2021
        addpathのドキュメントを読むと、括弧の中身は文字ベクトル または string スカラーとなっています。
半角のシングルクォーテーション(')かダブルクオーテーション(")で括って、以下のように実行してみるとできると思います。
 addpath('C:¥example')
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!