09-26-2022 09:44 AM
このforループに0,0.01,0.02,0.03…4の値をそれぞれtに代入してほしいのですがforループはやはり整数しか扱えないのでしょうか
tに代入するだけなら
このようにできるのですが波形を表示させる際に
横軸がforループで用いた0から400になってしまうのですが横軸を0,0.01,0.02,0.03…4にする方法などはありますか?
説明が下手で申し訳ございませんが少しでも気づいたことなどがあれば教えてください。
Solved! Go to Solution.
09-26-2022 10:42 AM - edited 09-26-2022 11:00 AM
You can set x0 and dx of the x axis. No need for any data manipulation.
(Also note that all controls and most of the early math should be before the loop.)
09-26-2022 10:59 AM
09-26-2022 06:35 PM
09-27-2022 10:05 AM - edited 09-27-2022 10:09 AM
As has been said here, you can also avoid that property node.
Also, if dx never changes at runtime, you can also set it directly in the graph properties dialog:
(Only do that if you wire the array directly. don't do it if you do the cluster or waveform option above)
09-27-2022 10:15 AM
thank you!!!!
it was successfully resolved!!