バックスラッシュを入力したいが¥に変換される。

addpath(C:example)  %このようなプログラムの入力を行いたいが
addpath(C:¥example)  %このような変換が行われ、¥の部分に演算子の使用が無効ですとの表示が出る。

 Accepted Answer

Kojiro Saito
Kojiro Saito on 9 Dec 2021

1 vote

addpathのドキュメントを読むと、括弧の中身は文字ベクトル または string スカラーとなっています。
半角のシングルクォーテーション(')かダブルクオーテーション(")で括って、以下のように実行してみるとできると思います。
addpath('C:¥example')

1 Comment

Yasumaru Hirai
Yasumaru Hirai on 10 Dec 2021
ありがとうございました!

Sign in to comment.

More Answers (0)

Categories

Find more on MATLAB 入門 in Help Center and File Exchange

Products

Release

R2020b

Community Treasure Hunt

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

Start Hunting!