Re: [Scilab-users] ?==?utf-8?q? Incorrect color in function

2020-04-10 Thread Perrichon
 

Indeed. Isn’t it, but :::

Coming fron 5.x to 6.x, logical and in 5x is « & » and, like in C « && » in 6x.

So a pass is needed in all hundred of files to provide to clients, 
phonecontact, documentation, and so on – great, thank you so much ; I think 
it’s more important than « then » instruction.

 

Regards

 

De : users  De la part de Federico Miyara
Envoyé : vendredi 10 avril 2020 18:16
À : users@lists.scilab.org
Objet : Re: [Scilab-users] ?==?utf-8?q? Incorrect color in function

 


Antoine,

I prefer the syntax without "then", it works, it is supported and the "then" 
seems redundant, but as you say, it is not related to that.

Thanks,

Federico Miyara 

On 10/04/2020 11:03, Antoine Monmayrant wrote:

Hello,
 
It seems that you're missing a "then" but nonetheless, the problem is really 
related to legend(), wich is weird.
I can reproduce your color bug with
 
function a()
if %t then
plot()
else
legend()
end
endfunction
 
 
but not with 
 
function a()
if %t then
plot()
else
legen()
end
endfunction
 
 (only difference legend()->legen()).
 
Antoine
 
Le Vendredi, Avril 10, 2020 15:28 CEST, Federico Miyara  
<mailto:fmiy...@fceia.unr.edu.ar>  a écrit: 
 

 
Dear all,
 
When writing the following script in SciNotes (v. 6.1):
 
function y = testcolor(t)
 if 1==1
 y = sinc(t)
 plot(t, y)
 legend("sinc")
 else
 y = 1
 end
endfunction
 
the end of the if structure appears with the same brownish color as the 
endfunction. Strangely, if copying and pasting here or into a word 
processor document, the color is the expected purple (that's why I 
removed all colors in this message).
 
It seems that the culprit is the legend clause.
 
Regards,
 
Federico Miyara
 
___
users mailing list
users@lists.scilab.org <mailto:users@lists.scilab.org> 
http://lists.scilab.org/mailman/listinfo/users
 

 
___
users mailing list
users@lists.scilab.org <mailto:users@lists.scilab.org> 
http://lists.scilab.org/mailman/listinfo/users
 
 

 

___
users mailing list
users@lists.scilab.org
http://lists.scilab.org/mailman/listinfo/users


Re: [Scilab-users] ?==?utf-8?q? Incorrect color in function

2020-04-10 Thread Federico Miyara


Antoine,

I prefer the syntax without "then", it works, it is supported and the 
"then" seems redundant, but as you say, it is not related to that.


Thanks,

Federico Miyara

On 10/04/2020 11:03, Antoine Monmayrant wrote:

Hello,

It seems that you're missing a "then" but nonetheless, the problem is really 
related to legend(), wich is weird.
I can reproduce your color bug with

function a()
 if %t then
 plot()
 else
 legend()
 end
endfunction


but not with

function a()
 if %t then
 plot()
 else
 legen()
 end
endfunction

  (only difference legend()->legen()).

Antoine
  
Le Vendredi, Avril 10, 2020 15:28 CEST, Federico Miyara  a écrit:
  

Dear all,

When writing the following script in SciNotes (v. 6.1):

function y = testcolor(t)
      if 1==1
      y = sinc(t)
      plot(t, y)
      legend("sinc")
      else
      y = 1
      end
endfunction

the end of the if structure appears with the same brownish color as the
endfunction. Strangely, if copying and pasting here or into a word
processor document, the color is the expected purple (that's why I
removed all colors in this message).

It seems that the culprit is the legend clause.

Regards,

Federico Miyara

___
users mailing list
users@lists.scilab.org
http://lists.scilab.org/mailman/listinfo/users


___
users mailing list
users@lists.scilab.org
http://lists.scilab.org/mailman/listinfo/users




___
users mailing list
users@lists.scilab.org
http://lists.scilab.org/mailman/listinfo/users


Re: [Scilab-users] ?==?utf-8?q? Incorrect color in function

2020-04-10 Thread Claus Futtrup


HA HA :-D ... it's funny!

Cheers,
Claus

On 10.04.2020 16:09, Antoine Monmayrant wrote:

OK, I think I nailed it:

function a()
 if % then
 end()
 end
endfunction

It's the "end()" in "legend()" that sends the parser off the trail: it thinks that the if block is over (as it has found 
"if", "then" & leg"end"() ) and then treats the next "end" as matching the "function"

Antoine
  
  
Le Vendredi, Avril 10, 2020 15:28 CEST, Federico Miyara  a écrit:
  

Dear all,

When writing the following script in SciNotes (v. 6.1):

function y = testcolor(t)
      if 1==1
      y = sinc(t)
      plot(t, y)
      legend("sinc")
      else
      y = 1
      end
endfunction

the end of the if structure appears with the same brownish color as the
endfunction. Strangely, if copying and pasting here or into a word
processor document, the color is the expected purple (that's why I
removed all colors in this message).

It seems that the culprit is the legend clause.

Regards,

Federico Miyara

___
users mailing list
users@lists.scilab.org
http://lists.scilab.org/mailman/listinfo/users


___
users mailing list
users@lists.scilab.org
http://lists.scilab.org/mailman/listinfo/users




--
This email has been checked for viruses by Avast antivirus software.
https://www.avast.com/antivirus

___
users mailing list
users@lists.scilab.org
http://lists.scilab.org/mailman/listinfo/users


Re: [Scilab-users] ?==?utf-8?q? Incorrect color in function

2020-04-10 Thread Antoine Monmayrant
OK, I think I nailed it:

function a()
if % then
end()
end
endfunction

It's the "end()" in "legend()" that sends the parser off the trail: it thinks 
that the if block is over (as it has found "if", "then" & leg"end"() ) and then 
treats the next "end" as matching the "function"

Antoine 
 
 
Le Vendredi, Avril 10, 2020 15:28 CEST, Federico Miyara 
 a écrit: 
 
> 
> Dear all,
> 
> When writing the following script in SciNotes (v. 6.1):
> 
> function y = testcolor(t)
>      if 1==1
>      y = sinc(t)
>      plot(t, y)
>      legend("sinc")
>      else
>      y = 1
>      end
> endfunction
> 
> the end of the if structure appears with the same brownish color as the 
> endfunction. Strangely, if copying and pasting here or into a word 
> processor document, the color is the expected purple (that's why I 
> removed all colors in this message).
> 
> It seems that the culprit is the legend clause.
> 
> Regards,
> 
> Federico Miyara
> 
> ___
> users mailing list
> users@lists.scilab.org
> http://lists.scilab.org/mailman/listinfo/users
>

___
users mailing list
users@lists.scilab.org
http://lists.scilab.org/mailman/listinfo/users