Excelファイルの内容を3-D Look-Up Tableに反映する方法について
    6 views (last 30 days)
  
       Show older comments
    

Excelで作成した上記のような3次元テーブルを、3-D Look-Up Tableで表したいです。
3-D Look-Up Tableのパラメータには、どのようにデータを設定すればよろしいでしょうか?

0 Comments
Accepted Answer
  Atsushi Ueno
      
 on 9 Mar 2024
        テーブル データ: repmat([0,3000,6000;500,4000,8000;1000,5000,10000],1,1,3)
ブレークポイント 1: [0,30,60]
ブレークポイント 2: [0,50,100]
ブレークポイント 3: [0,500,1000]
1 Comment
  Atsushi Ueno
      
 on 9 Mar 2024
				なんか警告メッセージが出るので、MATLABのワークスペースに3次元配列を作成してから
test = repmat([0,3000,6000;500,4000,8000;1000,5000,10000],1,1,3);
テーブル データ: test
とした方がよいみたいです。ブレークポイントは即値でも怒られませんでした。
More Answers (0)
See Also
Categories
				Find more on スプレッドシート in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
