Community Profile

photo

Ryuhei Funada

Last seen: 1 day ago Active since 2019

Statistics

  • Knowledgeable Level 1
  • Revival Level 1
  • First Answer

View badges

Content Feed

View by

Answered
geoplotで2点間の線分をfor文を用いずに複数プロットする方法
下記のようなセル配列を作成して、{:}を使って入力します latlonCl = {[35.6732 35.7232] [139.7313 139.7813] "g-*" [ 35.7732 35.8232] [ 139.8313 139.8...

3 years ago | 0

Answered
forループ中にbreakがある場合における並列化
「breakではなくcontinueを使う」ではいかがでしょうか? N=20; aa = zeros(N,1); parfor i = 1:N a =i*i; if a >100 continue ...

3 years ago | 0

Answered
コード生成でのcategoricalからcharへの変換について
label = cellstr(label); label{1}でchar型で抜き出す。 でいかがでしょうか? 下記の web(fullfile(docroot, 'vision/examples/code-generation-for-obj...

4 years ago | 0

| accepted

Answered
uigetfile のフィルタによるファイルの選択
こちらでいかがでしょうか? [f, d] = uigetfile({'*.xlsx;*.m'}, "Select .xlsx and .m File"); ちなみに{'*.txt';'*.oif';'*.mat'}と書くと3行のcell 配列になり、{...

4 years ago | 2

| accepted

Answered
イメージラベラーの紐付けを別のPCで復元する方法
イメージラベラー用のgroundTruthオブジェクトでは、R2018bからオブジェクト関数changeFilePathsを使用して、groundTruthDataSourceの絶対パスを変更することができます。 下記をご参照ください。 web(ful...

5 years ago | 0