Re: [Scilab-users] Big HiDPI issue with Scilab 2024.1.0 on Linux

2024-08-16 Thread Hani Andreas Ibrahim
processed according to our data privacy policy as described on our website. Should you have any questions related to personal data protection, please contact 3DS Data Protection Officer https://www.3ds.com/privacy-policy/contact/ -- _ Hani Andreas Ibrahim Bahnstr.

Re: [Scilab-users] Get filename by script command

2024-01-22 Thread Hani Andreas Ibrahim
lab.org/mailman/listinfo/users -- _________ Hani Andreas Ibrahim Bahnstr. 36b 40822 Mettmann, Deutschland Tel.: +49-2104-3011727 Mob.: +49-175-2094559 E-Mail: m...@hani-ibrahim.de This email and any attachments are intended solely for the use of the individual or entity to whom it is addressed and may be

[Scilab-users] Add files problems at fileexchange.scilab.org

2020-01-17 Thread Hani Andreas Ibrahim
Hello,   I don't know if this is the right place to ask this question but I would like to share some code at https://fileexchange.scilab.org. Unfortunately it is not possible (for me) to add file(s) to my set or even edit it.   I was logged in and created a new file set. Filled out the form  

Re: [Scilab-users] Get duplicates of a vector

2019-09-23 Thread Hani Andreas Ibrahim
Thank you for your quick response. That's it. You helped me a lot.   By changing ==2 to >=2 it also works when a number occurs more than twice.   Again many thanks, Roland.   Hani   Gesendet: Montag, 23. September 2019 um 19:43 Uhr Von: "RolandB" An: users@lists.scilab.org Betreff: Re:

[Scilab-users] Get duplicates of a vector

2019-09-23 Thread Hani Andreas Ibrahim
Hello,   I want to get the duplicates of a vector. Lets say I have a vector as follows:   A = [ 1 5 3 2 3 1 ];   I want to get a vector which contains the duplicates [1 3].   I found intersect, union and unique but they give me just the vector w/o the duplicates. In this example unique(A)=>

Re: [Scilab-users] Unclear How to create toolbox

2019-05-27 Thread Hani Andreas Ibrahim
Remove the line(s):   Version:0.9 StartHTML:-1 EndHTML:-1 StartFragment:000111 EndFragment:015887   in the code sections.     Gesendet: Montag, 27. Mai 2019 um 16:26 Uhr Von: "Hani Andreas Ibrahim" An: users@lists.scilab.org Betreff: Re: [Scilab-users] Unclear How

Re: [Scilab-users] Unclear How to create toolbox

2019-05-27 Thread Hani Andreas Ibrahim
Hi Marco,   "There exists no 'cleaner.sce'"   cleaner.sce  is build automatically by executing builder.sce.   "We are supposed to copy (??) files like ".start", but ..."   Most of them you can delete or comment out. One yourtoolbox.start-example w/o help, demos, etc. see below. Search vor

Re: [Scilab-users] Make Variable visible in Scilab from a SCE-script in a toolbox

2019-05-10 Thread Hani Andreas Ibrahim
t;, ...     "menubar_visible", "on", ...     "menubar", "none", ...     "default_axes", "off", ...     "background", color(255, 255, 255));     uicontrol(f, ...     "style", "pushbutton", ...   

[Scilab-users] Make Variable visible in Scilab from a SCE-script in a toolbox

2019-05-10 Thread Hani Andreas Ibrahim
I wrote a SCE-Script where you can read datafiles into a matrix and specify the import parameter AND the name of matrix where the data is stored in a GUI. Because variables in sce are visible to Scilab I could work with the matrix which name was specified in the GUI in Scilab's console.   Now I w