<html>
<head>
<meta content="text/html; charset=windows-1252"
http-equiv="Content-Type">
</head>
<body text="#000000" bgcolor="#FFFFFF">
<div class="moz-cite-prefix">Le 02/16/2016 11:55 AM, Eric Dubois a
écrit :<br>
</div>
<blockquote
cite="mid:CAGgDjFRjsFUUeHZ00WOgy1QziEGrTpSamJ_E1rdqestMwb6+RQ@mail.gmail.com"
type="cite">
<div dir="ltr">
<div>
<p class="MsoNormal" style="margin-bottom:0.0001pt"><span
style="font-size:12pt;font-family:Arial,sans-serif;background-image:initial;background-repeat:initial"
lang="EN-US">Hello</span><span
style="font-size:12pt;font-family:'Times New Roman',serif"
lang="EN-US"></span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt"><span
style="font-size:12pt;font-family:Arial,sans-serif"
lang="EN-US"> </span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt"><span
style="font-size:12pt;font-family:Arial,sans-serif"
lang="EN-US">Thank you for this release and the
improvements this
Scilab version contains.</span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt"><span
style="font-size:12pt;font-family:Arial,sans-serif"
lang="EN-US"> </span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt"><span
style="font-size:12pt;font-family:Arial,sans-serif"
lang="EN-US">I have however a major concern with the
change of
behaviour of the addition or subtraction of a null matrix
to another matrix. As
explained in the release notes, []+a will now result in []
whereas it resulted in a in previous versions.</span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt"><span
style="font-size:12pt;font-family:Arial,sans-serif"
lang="EN-US"> </span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt"><span
style="font-size:12pt;font-family:Arial,sans-serif"
lang="EN-US">This means that developments made under older
Scilab
versions will have to be adapted to Scilab 6.0. This is
potentially a huge task,
since all additions or subtractions in the programs have a
priori to be checked. Needless to say, additions and
subtractions are very pervasive operations
in numerical programs. And since all additions and
subtractions cannot be
checked in a systematic way (in my toolbox, I have more
than 20 000 of them!),
the needed modifications will be made over a long period
of time, at the rhythm
of the discovery of bugs by a developer or its users.</span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt"><span
style="font-size:12pt;font-family:Arial,sans-serif"
lang="EN-US"> </span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt"><span
style="font-size:12pt;font-family:Arial,sans-serif"
lang="EN-US">More worrying still, not all additions or
subtractions
involving null matrices will generate errors when
switching from Scilab 5 or
older to Scilab 6: for example, z=size([a+1 y],1) applied
to the null matrix a will
simply add 1 in Scilab 6 to the result of Scilab 5,
without generating errors.
The attentive user will be alerted by the warning message
generated by Scilab
6, but the inattentive one may not notice it or fully
understand its
consequences. So it may lead some users to generate wrong
results without being
aware of it, which should be very embarrassing for the
provider of the programs used and for Scilab-enterprises
itself.</span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt"><span
style="font-size:12pt;font-family:Arial,sans-serif"
lang="EN-US"> </span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt"><span
style="font-size:12pt;font-family:Arial,sans-serif"
lang="EN-US">Another problem will come from users sticking
to
Scilab older versions: as for me I have regularly e-mails
from users that work
for a reason or another on old Scilab versions (5.3.3 at
the moment for
instance): avoiding problems to these users will constrain
the adaptation,
prevent from using all capabilities of Scilab and
complicate the code. With my
example, it will be necessary to introduce a conditional
such as:</span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt"><span
style="font-size:12pt;font-family:Arial,sans-serif"
lang="EN-US"> </span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt"><span
style="font-size:12pt;font-family:Arial,sans-serif"
lang="EN-US">if isempty(x) then</span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt"><span
style="font-size:12pt;font-family:Arial,sans-serif"
lang="EN-US"> z=size(y,1)+1</span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt"><span
style="font-size:12pt;font-family:Arial,sans-serif"
lang="EN-US">else</span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt"><span
style="font-size:12pt;font-family:Arial,sans-serif"
lang="EN-US"> z=size([a y],1)</span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt"><span
style="font-size:12pt;font-family:Arial,sans-serif"
lang="EN-US">end</span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt"><span
style="font-size:12pt;font-family:Arial,sans-serif"
lang="EN-US"> </span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt"><span
style="font-size:12pt;font-family:Arial,sans-serif"
lang="EN-US">And this will apply to new programs as well,
which
will need so much care that, I fear, some cases will be
missed by even the most
careful programmer. And in this case users working with
older Scilab versions
will not even be alerted by a warning message.</span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt"><span
style="font-size:12pt;font-family:Arial,sans-serif"
lang="EN-US"> </span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt"><span
style="font-size:12pt;font-family:Arial,sans-serif"
lang="EN-US">Moreover, considering the importance of the
change, it
is all the more surprising that it has not been announced
in advance, as was
the –good– practice for previous changes, even minor (such
as the replacement of
x^n by x .^n when x was a vector, a change that a)
affected much less numerous lines of code b) did entail a
simple replacement of some ^ by .^ c) had
no side effect).</span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt"><span
style="font-size:12pt;font-family:Arial,sans-serif"
lang="EN-US"> </span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt"><span
style="font-size:12pt;font-family:Arial,sans-serif"
lang="EN-US">Don’t other Scilab users share my concern?</span></p>
</div>
</div>
</blockquote>
<br>
Well, I understand your concern.<br>
However, I buy the fact that this change will make the language more
consistent.<br>
Indeed, "ms=m+s" where m is a matrix and s a scalar gives a matrix
ms of same size than m in most cases (ie when m is not empty).<br>
It thus makes sense that adding a scalar to an empty matrix returns
an empty matrix.<br>
This is also the default behavior with other similar languages like
octave, matlab, julia, so it makes sense.<br>
I think the old behavior was kind of weird.<br>
But you are right that this is a major change that will introduce
subtle and hard to find bugs.<br>
We should keep in mind that it's a major change (5.x->6.x) and I
think the last one (4.x->5.x) was even worse in terms of backward
compatibility!<br>
<br>
Cheers,<br>
<br>
Antoine<br>
<br>
<blockquote
cite="mid:CAGgDjFRjsFUUeHZ00WOgy1QziEGrTpSamJ_E1rdqestMwb6+RQ@mail.gmail.com"
type="cite">
<div dir="ltr">
<div>
<p class="MsoNormal" style="margin-bottom:0.0001pt"><span
style="font-size:12pt;font-family:Arial,sans-serif"
lang="EN-US"> </span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt"><span
style="font-size:12pt;font-family:Arial,sans-serif"
lang="EN-US">Regards</span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt"><span
style="font-size:12pt;font-family:Arial,sans-serif"
lang="EN-US"> </span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt"><span
style="font-size:12pt;font-family:Arial,sans-serif"
lang="EN-US">Éric.</span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt"><span
style="font-size:12pt;font-family:Arial,sans-serif"
lang="EN-US"> </span></p>
<p class="MsoNormal" style="margin-bottom:0.0001pt"><span
style="font-size:12pt;font-family:Arial,sans-serif"
lang="EN-US">PS: I find a little bit provocative the
sentence in the
release notes: “To simplify the transition of your code
base during beta, a
specific warning is issued when such operation is
detected”. With a little exaggeration,
it sounds like digging the Great canyon and saying to
people now separated by
it: to help you, we will give you beach shovels so that
you can build a bridge
between the two rivers of the canyon...</span></p>
</div>
</div>
<div class="gmail_extra"><br>
<div class="gmail_quote">2016-02-15 16:35 GMT+01:00 Yann DEBRAY
<span dir="ltr"><<a moz-do-not-send="true"
href="mailto:yann.debray@scilab-enterprises.com"
target="_blank">yann.debray@scilab-enterprises.com</a>></span>:<br>
<blockquote class="gmail_quote" style="margin:0 0 0
.8ex;border-left:1px #ccc solid;padding-left:1ex">
<div bgcolor="#FFFFFF" text="#000000">
<div>
<p style="display:block;margin:13px
0px;color:rgb(0,0,0);font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:22px;text-align:-webkit-left;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255)"><span
lang="EN-US">Hello Scilab user,</span></p>
<p style="display:block;margin:13px
0px;color:rgb(0,0,0);font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:22px;text-align:-webkit-left;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255)"><span
lang="EN-US">It has been a while since we last
shared news with you. Here are some recent updates
we hope you will like.</span></p>
<h2
style="line-height:30px;font-size:19px;color:rgb(0,0,0);font-family:Ubuntu,Helvetica,Arial,sans-serif;font-style:normal;font-variant:normal;letter-spacing:normal;text-align:-webkit-left;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;font-weight:700;background-color:rgb(255,255,255)"><span
lang="EN-US">Scilab 6 Beta</span></h2>
<p style="display:block;margin:13px
0px;color:rgb(0,0,0);font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:22px;text-align:-webkit-left;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255)"><span
lang="EN-US">Scilab 6.0 is a major new release of
Scilab, the open source modeling & simulation
platform. This beta version is a preview for all
users, commercial as well as community.<br>
</span></p>
<p style="display:block;margin:13px
0px;color:rgb(0,0,0);font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:22px;text-align:-webkit-left;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255)"><span
lang="EN-US"><strong style="font-weight:700">What's
new: </strong></span></p>
<p style="display:block;margin:13px
0px;color:rgb(0,0,0);font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:22px;text-align:-webkit-left;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255)"><span
lang="EN-US">--> New computation core<span> </span><span
style="font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;line-height:22px;text-align:-webkit-left;text-transform:none;white-space:normal;float:none">enabling
bigger data sets</span><br>
--> Improved Xcos allowing larger models<br>
--> Utilities for development productivity
(debugger, profiler and coverage)<span lang="EN-US"><br>
</span></span></p>
<p style="display:block;margin:13px
0px;color:rgb(0,0,0);font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:22px;text-align:-webkit-left;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255)"><span
lang="EN-US"><span lang="EN-US">To provide relevant
informations to the user, we also introduced a new
view called "Newsfeed".<br>
</span>The release will come soon, so feel free to
give us feedback about your experience.<br>
</span></p>
<p style="display:block;margin:13px
0px;color:rgb(0,0,0);font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:22px;text-align:-webkit-left;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255)"><span
lang="EN-US"><a moz-do-not-send="true"
href="http://www.scilab.org/community/news/scilab-6-beta-1"
target="_blank">Find out more</a><br>
</span></p>
<p style="display:block;margin:13px
0px;color:rgb(0,0,0);font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:22px;text-align:-webkit-left;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255)">
</p>
<h2
style="line-height:30px;font-size:19px;color:rgb(0,0,0);font-family:Ubuntu,Helvetica,Arial,sans-serif;font-style:normal;font-variant:normal;letter-spacing:normal;text-align:-webkit-left;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;font-weight:700;background-color:rgb(255,255,255)"><span
lang="EN-US">Signal acquisition and instrument
control<span> </span><br>
with the Scilab VISA Toolbox (beta version)</span></h2>
<h2
style="line-height:30px;font-size:19px;color:rgb(0,0,0);font-family:Ubuntu,Helvetica,Arial,sans-serif;font-style:normal;font-variant:normal;letter-spacing:normal;text-align:-webkit-left;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;font-weight:700;background-color:rgb(255,255,255)"><span
lang="EN-US"><span
style="color:rgb(83,85,72);font-family:CartoGothicStdBook,Verdana,Arial,sans-serif;font-size:12.8px;font-style:normal;font-variant:normal;font-weight:normal;line-height:16px;text-align:left;text-transform:none;white-space:normal;float:none"><span
style="font-family:Ubuntu,Helvetica,Arial,sans-serif">In partnership
with National Instruments, we have developed a
Scilab interface for measurement devices from
leading manufacturers (National Instruments,
Agilent/HP, ... )</span></span></span></h2>
<p> </p>
<p style="display:block;margin:13px
0px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;line-height:1.25em;color:rgb(83,85,72);font-family:CartoGothicStdBook,Verdana,Arial,sans-serif;font-size:12.8px;text-align:left;background-color:rgb(255,255,255)"><span
style="font-family:Ubuntu,Helvetica,Arial,sans-serif">Here is the first
version of this VISA toolbox for signal acquisition
and instrument control. This is a beta version: your
feedbacks are welcome.</span></p>
<p style="display:block;margin:13px
0px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;line-height:1.25em;color:rgb(83,85,72);font-family:CartoGothicStdBook,Verdana,Arial,sans-serif;font-size:12.8px;text-align:left;background-color:rgb(255,255,255)"><span
style="font-family:Ubuntu,Helvetica,Arial,sans-serif">The</span><span><span
style="font-family:Ubuntu,Helvetica,Arial,sans-serif"> </span></span><a
moz-do-not-send="true"
href="https://www.ni.com/visa/"
style="color:rgb(68,146,195);font-family:inherit;font-weight:inherit;text-decoration:none;background-color:transparent"
target="_blank"><span
style="font-family:Ubuntu,Helvetica,Arial,sans-serif">Virtual
Instrument Software Architecture</span></a><span><span
style="font-family:Ubuntu,Helvetica,Arial,sans-serif"> </span></span><span
style="font-family:Ubuntu,Helvetica,Arial,sans-serif">(VISA) is a
standard for configuring, programming, and
troubleshooting instrumentation systems comprising
GPIB, VXI, PXI, Serial, Ethernet, and/or USB
interfaces. VISA provides the programming interface
between the hardware and development environments.</span> </p>
<p style="display:block;margin:13px
0px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;line-height:1.25em;color:rgb(83,85,72);font-family:CartoGothicStdBook,Verdana,Arial,sans-serif;font-size:12.8px;text-align:left;background-color:rgb(255,255,255)"><span
style="font-family:Ubuntu,Helvetica,Arial,sans-serif"><span
style="color:inherit;font-family:inherit;font-weight:inherit;text-decoration:underline"><a
moz-do-not-send="true"
href="http://www.scilab.org/scilab/modules/visa-toolbox"
style="color:inherit;font-family:inherit;font-weight:inherit;text-decoration:none;background-color:transparent"
target="_blank">Find out more </a><br>
</span></span></p>
<p style="display:block;margin:13px
0px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;line-height:1.25em;color:rgb(83,85,72);font-family:CartoGothicStdBook,Verdana,Arial,sans-serif;font-size:12.8px;text-align:left;background-color:rgb(255,255,255)">
</p>
<h2
style="line-height:30px;font-size:19px;color:rgb(0,0,0);font-family:Ubuntu,Helvetica,Arial,sans-serif;font-style:normal;font-variant:normal;letter-spacing:normal;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-align:-webkit-left;font-weight:700;background-color:rgb(255,255,255)">Event
Embedded World // 23-25 February 2016, Nuremberg</h2>
<p> </p>
<p style="display:block;margin:13px
0px;color:rgb(0,0,0);font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;text-align:-webkit-left;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;line-height:22px;background-color:rgb(255,255,255)"><span
lang="EN-US">Starting with the largest embedded
systems' event of the year<span> </span>:<span> </span><a
moz-do-not-send="true"
href="https://www.embedded-world.de/en"
style="color:inherit;font-family:inherit;font-weight:inherit;text-decoration:none;background-color:transparent"
target="_blank"><span
style="text-decoration:underline">Embedded World
2016</span></a><br>
23 - 25 February 2016 in Nuremberg, Germany</span><span> <br>
</span></p>
<p style="display:block;margin:13px
0px;color:rgb(0,0,0);font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:13px;text-align:-webkit-left;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255)"><span
lang="EN-US">We will be present on the booth of
Evidence (<a moz-do-not-send="true"
href="https://www.embedded-world.de/en/ausstellerprodukte/embwld16/exhibitor-18047504/evidence-srl"
style="color:inherit;font-family:inherit;font-weight:inherit;text-decoration:none;background-color:transparent"
target="_blank"><span
style="text-decoration:underline">Hall 4 / 4-545</span></a><u>)</u> and
Emmtrix (<a moz-do-not-send="true"
href="https://www.embedded-world.de/en/ausstellerprodukte/embwld16/exhibitor-19553455/emmtrix-technologies"
style="color:inherit;font-family:inherit;font-weight:inherit;text-decoration:none;background-color:transparent"
target="_blank"><span><span
style="text-decoration:underline">Hall 4A,
booth 520d</span></span></a><u><span><span
style="text-decoration:underline">)</span></span></u></span></p>
<p style="display:block;margin:13px
0px;color:rgb(0,0,0);font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;text-align:-webkit-left;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;line-height:22px;background-color:rgb(255,255,255)"><span><span
style="font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;line-height:13px;text-align:-webkit-left;text-transform:none;white-space:normal;float:none"></span></span></p>
<p style="display:block;margin:13px
0px;color:rgb(0,0,0);font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;text-align:-webkit-left;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;line-height:22px;background-color:rgb(255,255,255)"><span
lang="EN-US">Scilab has many applications in the
field of embedded systems :<br>
</span>--> post-processing of test data<br>
<span style="background-color:transparent"
lang="EN-US">--> </span><span
style="background-color:transparent" lang="EN-US">automation
of tasks<br>
</span><span
style="line-height:13px;background-color:transparent"
lang="EN-US"><span style="line-height:22px">--></span><font
face="Times New Roman" size="1"><span
style="line-height:normal"> </span></font></span><span
style="background-color:transparent" lang="EN-US">prototyping
of control algorithms<br>
</span><span
style="line-height:13px;background-color:transparent"
lang="EN-US"><span style="line-height:22px">--></span><font
face="Times New Roman" size="1"><span
style="line-height:normal"> </span></font></span><span
style="background-color:transparent" lang="EN-US">identification
of systems parameter<br>
</span><span
style="line-height:13px;background-color:transparent"
lang="EN-US"><span style="line-height:22px">--></span><font
face="Times New Roman" size="1"><span
style="line-height:normal"> </span></font></span><span
style="background-color:transparent" lang="EN-US">simulation
of control systems<br>
<span style="line-height:22px" lang="EN-US">-->
embedded code generation</span><br>
</span></p>
<p style="display:block;margin:13px
0px;color:rgb(0,0,0);font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:13px;text-align:-webkit-left;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255)"><span
lang="EN-US">Here are some use cases of Scilab in
this field, from our last ScilabTEC :</span></p>
<p style="display:block;margin:13px
0px;color:rgb(0,0,0);font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:13px;text-align:-webkit-left;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255)"><a
moz-do-not-send="true"
href="http://www.scilab.org/fr/community/scilabtec/2015/ZYNQ-7000-High-Performance-Electric-Drive-and-Silicon-Carbide-Multilevel-inverter-with-SCILAB-Hardware-in-the-loop"
style="color:inherit;font-family:Ubuntu,Helvetica,Arial,sans-serif;font-weight:inherit;text-decoration:none;background-color:transparent"
target="_blank"><span
style="text-decoration:underline"></span></a></p>
<ul
style="color:rgb(0,0,0);font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:13px;text-align:-webkit-left;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255)">
<li><a moz-do-not-send="true"
href="http://www.scilab.org/fr/community/scilabtec/2015/ZYNQ-7000-High-Performance-Electric-Drive-and-Silicon-Carbide-Multilevel-inverter-with-SCILAB-Hardware-in-the-loop"
style="color:inherit;font-family:Ubuntu,Helvetica,Arial,sans-serif;font-weight:inherit;text-decoration:none;background-color:transparent"
target="_blank"><span
style="text-decoration:underline">ZYNQ-7000 High
Performance Electric Drive and Silicon Carbide
Multilevel inverter with Scilab
Hardware-in-the-loop</span></a></li>
<li><a moz-do-not-send="true"
href="http://www.scilab.org/fr/community/scilabtec/2015/E4Coder-on-Scilab-State-Machines-simulation-and-GUI-prototyping-for-Scilab-5.x"
style="color:inherit;font-family:Ubuntu,Helvetica,Arial,sans-serif;font-weight:inherit;text-decoration:none;background-color:transparent"
target="_blank"><span
style="text-decoration:underline">E4Coder on
Scilab: State Machines simulation and GUI
prototyping</span></a></li>
<li><a moz-do-not-send="true"
href="http://www.scilab.org/fr/community/scilabtec/2015/Can-programming-of-multi-core-systems-be-easier-please-The-ALMA-Approach"
style="color:inherit;font-family:Ubuntu,Helvetica,Arial,sans-serif;font-weight:inherit;text-decoration:none;background-color:transparent"
target="_blank"><span
style="text-decoration:underline">Can
programming of multi-core systems be easier,
please?</span></a></li>
<li><span
style="color:inherit;font-family:Ubuntu,Helvetica,Arial,sans-serif;font-weight:inherit;text-decoration:underline"><a
moz-do-not-send="true"
href="http://www.scilab.org/fr/community/scilabtec/2015/Utilizing-Scilab-and-Xcos-for-real-time-control-and-measurement-applications"
style="color:inherit;font-family:Ubuntu,Helvetica,Arial,sans-serif;font-weight:inherit;text-decoration:none;background-color:transparent"
target="_blank">Real-time control and
measurement applications</a></span></li>
</ul>
<p style="display:block;margin:13px
0px;color:rgb(0,0,0);font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:13px;text-align:-webkit-left;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255)"><span
lang="EN-US">Prior to this important event, we want
to highlight some Scilab partners in the world of
Embedded Systems which will be present at Embedded
World:</span></p>
<p style="display:block;margin:13px
0px;color:rgb(0,0,0);font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:13px;text-align:-webkit-left;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255)"><span
lang="EN-US"></span></p>
<ul
style="color:rgb(0,0,0);font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:13px;text-align:-webkit-left;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255)">
<li><span lang="EN-US"><a moz-do-not-send="true"
style="color:inherit;font-family:inherit;font-weight:inherit;text-decoration:none;background-color:transparent"><span
style="text-decoration:underline"></span></a><a
moz-do-not-send="true"
href="http://evidence.eu.com/"
style="color:inherit;font-family:inherit;font-weight:inherit;text-decoration:none;background-color:transparent"
target="_blank"><span
style="text-decoration:underline">Evidence</span></a></span>,<span> </span><a
moz-do-not-send="true"
href="http://3o69.mj.am/link/3o69/l1yg/14/nhjVrhr02-h021TOwOMROQ/aHR0cDovL3d3dy5lbW10cml4LmNvbQ"
style="color:inherit;font-family:inherit;font-weight:inherit;text-decoration:none;background-color:transparent"
target="_blank"><span
style="text-decoration:underline"></span></a></li>
<li><span lang="EN-US"><a moz-do-not-send="true"
href="http://www.emmtrix.com/"
style="color:inherit;font-family:inherit;font-weight:inherit;text-decoration:none;background-color:transparent"
target="_blank"><span
style="text-decoration:underline">Emmtrix</span></a>,<span> </span><a
moz-do-not-send="true"
href="http://3o69.mj.am/link/3o69/l1yg/15/hj8JqLS_OR8HY87_Elb4cA/aHR0cDovL3d3dy54aWxpbnguY29tLw"
style="color:inherit;font-family:inherit;font-weight:inherit;text-decoration:none;background-color:transparent"
target="_blank"><span
style="text-decoration:underline"></span></a></span></li>
<li><span lang="EN-US"><a moz-do-not-send="true"
href="http://www.xilinx.com/"
style="color:inherit;font-family:inherit;font-weight:inherit;text-decoration:none;background-color:transparent"
target="_blank"><span
style="text-decoration:underline">Xilinx</span></a> <span></span><span
style="text-decoration:underline"></span></span></li>
<li><span lang="EN-US"><span
style="text-decoration:underline"><a
moz-do-not-send="true"
href="http://mechatronic-simulation.org/"
style="color:inherit;font-family:inherit;font-weight:inherit;text-decoration:none;background-color:transparent"
target="_blank">LCM</a></span><span> </span>(present
at Microchip's booth)</span></li>
</ul>
<p style="display:block;margin:13px
0px;color:rgb(0,0,0);font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:13px;text-align:-webkit-left;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255)">Please
do contact us, to set up a time for some quality
exchange.<br>
</p>
<p style="display:block;margin:13px
0px;color:rgb(0,0,0);font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:13px;text-align:-webkit-left;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255)"><a
moz-do-not-send="true"
href="mailto:contact@scilab-enterprises.com?subject=embeddedworld2016"
target="_blank">Meet us @ Embedded World</a><br>
</p>
<p style="display:block;margin:13px
0px;color:rgb(0,0,0);font-family:Ubuntu,Helvetica,Arial,sans-serif;font-size:13px;font-style:normal;font-variant:normal;font-weight:normal;letter-spacing:normal;line-height:13px;text-align:-webkit-left;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255)">--<br>
The Scilab Team<br>
</p>
<br>
</div>
<br>
</div>
<br>
_______________________________________________<br>
users mailing list<br>
<a moz-do-not-send="true"
href="mailto:users@lists.scilab.org">users@lists.scilab.org</a><br>
<a moz-do-not-send="true"
href="http://lists.scilab.org/mailman/listinfo/users"
rel="noreferrer" target="_blank">http://lists.scilab.org/mailman/listinfo/users</a><br>
<br>
</blockquote>
</div>
<br>
</div>
<br>
<fieldset class="mimeAttachmentHeader"></fieldset>
<br>
<pre wrap="">_______________________________________________
users mailing list
<a class="moz-txt-link-abbreviated" href="mailto:users@lists.scilab.org">users@lists.scilab.org</a>
<a class="moz-txt-link-freetext" href="http://lists.scilab.org/mailman/listinfo/users">http://lists.scilab.org/mailman/listinfo/users</a>
</pre>
</blockquote>
<br>
<br>
<pre class="moz-signature" cols="72">--
+++++++++++++++++++++++++++++++++++++++++++++++++++++++
Antoine Monmayrant LAAS - CNRS
7 avenue du Colonel Roche
BP 54200
31031 TOULOUSE Cedex 4
FRANCE
Tel:+33 5 61 33 64 59
email : <a class="moz-txt-link-abbreviated" href="mailto:antoine.monmayrant@laas.fr">antoine.monmayrant@laas.fr</a>
permanent email : <a class="moz-txt-link-abbreviated" href="mailto:antoine.monmayrant@polytechnique.org">antoine.monmayrant@polytechnique.org</a>
+++++++++++++++++++++++++++++++++++++++++++++++++++++++
</pre>
</body>
</html>