-
I see the option to set MBW in XYZ plot. |
Beta Was this translation helpful? Give feedback.
Replies: 6 comments 7 replies
-
when you select MBW alpha B, for example, but it is not an easy task. |
Beta Was this translation helpful? Give feedback.
-
and I recommend you to use "Auto Merger Helper" feature, It will automatically scan selected model or blocks. |
Beta Was this translation helpful? Give feedback.
-
I failed on my own, not mixer :-) |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
do not input spaces between comma or quotes not (_ denote a space) csv parser does not accept any space pre/post separator(default separator is import csv
from io import StringIO
data_str1='"0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0","0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0","0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0"'
data_str='"0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0", "0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0","0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0"'
ll=csv.reader(StringIO(data_str))
print(list(ll))
|
Beta Was this translation helpful? Give feedback.
-
It helped! Thanks so much! |
Beta Was this translation helpful? Give feedback.
do not input spaces between comma or quotes
","
"0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0","0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0","0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0"
not (_ denote a space)
"0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",_"0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",_"0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0"
csv parser does not accept any space pre/post separator(default separator is
,
)