Re: [Scilab-users] Scilab vs matlab

2016-09-26 Thread jbaud...@insa-rennes.fr
Hello, Le 26/09/2016 à 16:20, Chijioke Kenechukwu a écrit : What is the advantage of scilab over matlab There is this http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.177.5019&rep=rep1&type=pdf It's a very old comparison (2008!!!) and I didn't find newer report. But as Stéphane sai

[Scilab-users] mprintf and backspace

2016-02-26 Thread jbaud...@insa-rennes.fr
Hello, I'd like to use \b, for backspace as in C, in mprintf function but it seems to not be implemented. How it can be obtained? (Only \n, \r and \t seems to be implemented.) Thanks, Jean-Yves ___ users mailing list users@lists.scilab.org http://

Re: [Scilab-users] mixing normal and math mode in label

2016-02-03 Thread jbaud...@insa-rennes.fr
Le 03/02/2016 16:30, grivet a écrit : Hello, How can I insert exponents inside a text label ? I tried: xlabel("frequency (h$^{-1}$)"). This did not work for me (Win 7, Scilab 5.5.1): the Latex part is not interpreted but reproduced verbatim. I don’t know how to mix verbatim and LaTeX but all

Re: [Scilab-users] R: plot versus date

2016-01-19 Thread jbaud...@insa-rennes.fr
Hi, Le 19/01/2016 08:29, anna78 a écrit : Thank you. And a question more: is there any way to 90° -rotate the x-axis ticks label? 90-rotation exists for the label but I don't see any rotate for the ticks. I don't know if it's possible with Scilab. Jean-Yves ___

Re: [Scilab-users] plot versus date

2016-01-18 Thread jbaud...@insa-rennes.fr
Hi, Le 18/01/2016 09:00, anna78 a écrit : Hi all, I'm beginner of SCILAB. I have the file here after reported, made of 5 columns. I would like to plot column 4 versus column 1, column 1 being a date in the yymmdd format. Is there any way to make SCILAB understand the x-axis is a date in yymmdd

Re: [Scilab-users] varialble and string

2015-10-30 Thread jbaud...@insa-rennes.fr
Le 30/10/2015 13:28, Antoine Monmayrant a écrit : Le 10/30/2015 01:03 PM, jbaud...@insa-rennes.fr a écrit : Is this what you want to do: -->x=["a","b","c","d","e"]; -->execstr(x(1)+"=1"

[Scilab-users] varialble and string

2015-10-30 Thread jbaud...@insa-rennes.fr
Hello, I use multiple variables with names given in a matrix, or vector > x=["a","b","c","d","e"]; I can easily use the variable with the function eval in math expression > 2*eval(x(1))+1 But if I want > a=1; How can I do this using the vector x only? I try > execstr("x(1)=1") but the ans

Re: [Scilab-users] opposite to 'diag' keyword

2015-06-17 Thread jbaud...@insa-rennes.fr
Hello, Le 17/06/2015 09:05, paul.carr...@free.fr a écrit : The question is quite basic: I'm trying to opposite to 'diag' keyword in order to build a diagonal matrix from a vector, but I fail so far ... what is the trick? The diag help says "diagonal including or extracting" > diag([1 2]) g

Re: [Scilab-users] How can I change the x_ticks and y_ticks?

2015-06-16 Thread jbaud...@insa-rennes.fr
Hello, Le 16/06/2015 02:12, Reinaldo a écrit : How could I change the x_ticks and y_ticks? For example: In this following script, the x_ticks displays each 2 units on X axis. I'd like each 0.5; and the y_ticks displays each 0.2 units on Y axis. I'd like each 0.1. How could I change those param