Re: [PD] how to get big numbers from array into a file?

2021-05-09 Thread IOhannes m zmoelnig

On 5/7/21 5:21 PM, Christof Ressi wrote:



> I think this has been discussed not too long ago.
> Maybe IOhannes remembers.

:-)

probably the discussion on [804]

to recap:
katja's original double-precision fixes (on which the current 
double-precision support is based) used different formats for displaying 
(and saving) numbers, based on whether you were using double precision 
or not.
i intentionally left this format magic out (because it also had 
undesired side-effects).


>
I'm not sure how to solve this... the problem is that "atom_string" is 
used to *save* and *display* floats, but these two operations don't 
require the same amount of precision.




yep.
i agree that we need two different atom2string converters for those two 
use-cases.

it would also solve the problem with spaces-in-symbols [824].


i've opened a feature-request [1310]

gfmsdra
IOhannes


[807] 
[824] 
[1310] 



OpenPGP_signature
Description: OpenPGP digital signature
___
Pd-list@lists.iem.at mailing list
UNSUBSCRIBE and account-management -> 
https://lists.puredata.info/listinfo/pd-list


Re: [PD] kiosk plugin - using only TCL / TK commands? (Linux)

2021-05-09 Thread Ingo
Never mind!

I tried [hcs/sys_gui] and it does all that I need (and more . . . )


> -Original Message-
> From: Pd-list [mailto:pd-list-boun...@lists.iem.at] On Behalf Of Ingo
> Sent: Monday, May 10, 2021 4:51 AM
> To: pd-list@lists.iem.at
> Subject: [PD] kiosk plugin - using only TCL / TK commands? (Linux)
>
> I have a question about the way the kiosk plugin works.
> Is it using exclusively standard TCL / TK commands that can be sent
otherwise
> on the fly?
>
> It looks to me like the kiosk plugin has basically one global setup for Pd
all
> windows (except for the console).
> I'm asking because I might have changing situations where I want to show a
> specific window full screen with no task bar but scroll bars and another
one
> maybe as a floating window "always on top" with no taskbar, no scrollbars
> and not resizable, etc.
>
> If this is the case what would be the best way to send these commands from
> within Pd?
> [shell] ? [hcs/sys_gui] ?
>
> Thanks!
> Ingo
>
>
> ___
> Pd-list@lists.iem.at mailing list
> UNSUBSCRIBE and account-management ->
> https://lists.puredata.info/listinfo/pd-list





___
Pd-list@lists.iem.at mailing list
UNSUBSCRIBE and account-management -> 
https://lists.puredata.info/listinfo/pd-list


[PD] kiosk plugin - using only TCL / TK commands? (Linux)

2021-05-09 Thread Ingo
I have a question about the way the kiosk plugin works.
Is it using exclusively standard TCL / TK commands that can be sent
otherwise on the fly?

It looks to me like the kiosk plugin has basically one global setup for Pd
all windows (except for the console).
I'm asking because I might have changing situations where I want to show a
specific window full screen with no task bar but scroll bars and another one
maybe as a floating window "always on top" with no taskbar, no scrollbars
and not resizable, etc.

If this is the case what would be the best way to send these commands from
within Pd?
[shell] ?   [hcs/sys_gui] ?

Thanks!
Ingo





___
Pd-list@lists.iem.at mailing list
UNSUBSCRIBE and account-management -> 
https://lists.puredata.info/listinfo/pd-list


Re: [PD] how to get big numbers from array into a file?

2021-05-09 Thread Christof Ressi
The output looks entirely reasonable. Maybe your spreadsheet application 
expects floating pointer numbers in the German format (comma instead dot)? If 
yes, there surely is an option to change that. Either way, the problem is not 
on the side of Pd. ​

Am 9. Mai 2021, 18:36, um 18:36, ro...@dds.nl schrieb:
>Christof Ressi schreef op 09-05-2021 13:40:
>
>>Can you share the output?
>
>here's  a small part of it.
>
>putting the textfile into a spreadsheet (OpenOffice)
>
>only the %d data is seen as numbers.
>
>with [makefilename %d]
>49
>64
>81
>100
>121
>144
>169
>
>with [makefilename %.2f]
>49.00
>64.00
>81.00
>100.00
>121.00
>144.00
>169.00
>
>with [makefilename %f]
>49.00
>64.00
>81.00
>100.00
>121.00
>144.00
>169.00
>
>rolf
___
Pd-list@lists.iem.at mailing list
UNSUBSCRIBE and account-management -> 
https://lists.puredata.info/listinfo/pd-list


Re: [PD] how to get big numbers from array into a file?

2021-05-09 Thread rolfm
Christof Ressi schreef op 09-05-2021 13:40: 

>Can you share the output? 

here's  a small part of it. 

putting the textfile into a spreadsheet (OpenOffice) 

only the %d data is seen as numbers. 

with [makefilename %d]
49
64
81
100
121
144
169

with [makefilename %.2f]
49.00
64.00
81.00
100.00
121.00
144.00
169.00

with [makefilename %f]
49.00
64.00
81.00
100.00
121.00
144.00
169.00

rolf___
Pd-list@lists.iem.at mailing list
UNSUBSCRIBE and account-management -> 
https://lists.puredata.info/listinfo/pd-list


Re: [PD] how to get big numbers from array into a file?

2021-05-09 Thread Christof Ressi
Can you share the output? ​

Am 9. Mai 2021, 13:21, um 13:21, ro...@dds.nl schrieb:
>thanks for the answers.
>
>i'm not asking about double-precision here.
>
>@Christof
>
> [makefilename %d]  together with [text] works: in the spreadsheet the
>'text'  in the output file is seen as numbers.
>
> with [makefilename %f]  this is not the case.
>
>rolf
>
>
>
>___
>Pd-list@lists.iem.at mailing list
>UNSUBSCRIBE and account-management ->
>https://lists.puredata.info/listinfo/pd-list
___
Pd-list@lists.iem.at mailing list
UNSUBSCRIBE and account-management -> 
https://lists.puredata.info/listinfo/pd-list


Re: [PD] how to get big numbers from array into a file?

2021-05-09 Thread rolfm
thanks for the answers. 

i'm not asking about double-precision here. 

@Christof 

 [makefilename %d]  together with [text] works: in the spreadsheet the
'text'  in the output file is seen as numbers. 

 with [makefilename %f]  this is not the case. 

rolf___
Pd-list@lists.iem.at mailing list
UNSUBSCRIBE and account-management -> 
https://lists.puredata.info/listinfo/pd-list