Welcome Guest! To enable all features please Login. New Registrations are disabled.

Notification

Icon
Error

Login


2 Pages<12
Options
Go to last post Go to first unread
Offline Davide Carpi  
#21 Posted : 02 March 2016 18:12:26(UTC)
Davide Carpi


Rank: Advanced Member

Groups: Registered, Advanced Member
Joined: 13/01/2012(UTC)
Posts: 2,647
Man
Italy
Location: Italy

Was thanked: 1329 time(s) in 875 post(s)
new beta release 0.98.5905 available, should fix problems even for those who didn't update plug-ins

All links are already updated (see #1)


(on behalf of Andrey)

Edited by user 02 March 2016 18:23:57(UTC)  | Reason: Not specified

If you like my plugins consider to support SMath Studio buying a plan; to offer me a coffee: paypal.me/dcprojects
thanks 2 users thanked Davide Carpi for this useful post.
on 02/03/2016(UTC),  on 02/03/2016(UTC)
Offline uni  
#22 Posted : 02 March 2016 19:38:20(UTC)
uni


Rank: Advanced Member

Groups: Registered, Advanced Member
Joined: 10/11/2010(UTC)
Posts: 1,494
Man
Russian Federation

Was thanked: 1274 time(s) in 745 post(s)
Maple Wrapper plugin can help with some symbolic problems.

2016-03-02 21-37-19 SMath Studio Desktop - [List1 ].png
Russia ☭ forever
Viacheslav N. Mezentsev
thanks 2 users thanked uni for this useful post.
on 02/03/2016(UTC),  on 02/03/2016(UTC)
Offline Jean Giraud  
#23 Posted : 02 March 2016 20:57:39(UTC)
Jean Giraud

Rank: Guest

Groups: Registered
Joined: 04/07/2015(UTC)
Posts: 6,866
Canada

Was thanked: 981 time(s) in 809 post(s)
Originally Posted by: uni Go to Quoted Post
Maple Wrapper plugin can help with some symbolic problems.


Hello Uni,
Which one is right, which is wrong ?
Personally: I would scrap Smath from subscripted variable.

Jean

Forum MapleSolve.gif

Offline uni  
#24 Posted : 02 March 2016 21:08:07(UTC)
uni


Rank: Advanced Member

Groups: Registered, Advanced Member
Joined: 10/11/2010(UTC)
Posts: 1,494
Man
Russian Federation

Was thanked: 1274 time(s) in 745 post(s)
All answers are correct. I just have invisible braces. If you click on the expression, then they appear. I don't know why it happened.
Russia ☭ forever
Viacheslav N. Mezentsev
Offline Jean Giraud  
#25 Posted : 03 March 2016 04:43:40(UTC)
Jean Giraud

Rank: Guest

Groups: Registered
Joined: 04/07/2015(UTC)
Posts: 6,866
Canada

Was thanked: 981 time(s) in 809 post(s)
Originally Posted by: uni Go to Quoted Post
All answers are correct. I just have invisible braces. If you click on the expression, then they appear. I don't know why it happened


I trust you Uni, because I know you tell the truth.
But an an algebraic result to be copied as such, wrong.
Maple does not like subsrcipt. That by clicking it shows
the brackets, to me it is a bug that it does not
output the right result.
I accept the subscript as a local tutorial demo.
For real work and particularly for publishing: NO subscript.

Cheers, Jean

Offline Jean Giraud  
#26 Posted : 03 March 2016 05:16:00(UTC)
Jean Giraud

Rank: Guest

Groups: Registered
Joined: 04/07/2015(UTC)
Posts: 6,866
Canada

Was thanked: 981 time(s) in 809 post(s)
Originally Posted by: Alex.M Go to Quoted Post
I have a 30 page SMath file that does not run on 0.98; The error points down to the summation function


I the worst instance, I noticed Sum limited to N = 11
My Ksmoothlet takes over 100. I didn't pursue
the hypergeometric as it turned red at very low N.
Too low N for that is useless as it flies in the blue.
In the fft/icfft [about two months ago], the length of
accepted N is not constant. Puzzling, live with it.

Attach the part of the work sheet that points the Sum error.

Jean
Offline uni  
#27 Posted : 03 March 2016 07:22:33(UTC)
uni


Rank: Advanced Member

Groups: Registered, Advanced Member
Joined: 10/11/2010(UTC)
Posts: 1,494
Man
Russian Federation

Was thanked: 1274 time(s) in 745 post(s)
Originally Posted by: Jean Giraud Go to Quoted Post
Maple does not like subsrcipt. That by clicking it shows
the brackets, to me it is a bug that it does not
output the right result.
I accept the subscript as a local tutorial demo.
For real work and particularly for publishing: NO subscript.

Don't worry about subscripts. For the variables subscripts supported as was described here.
If Maple Wrapper meet a variable with the dot (comma) in its name this name will wrapped with the symbol `. You can see this in log file (<plugin folder>\mvr5\mvr5.txt).

The log for int(x.1,x.1):

Code:
03.03.2016 9:20:29 [->] smath_int(`x.1`,`x.1`)
03.03.2016 9:20:29 [->] C:\Temp\tmpAC26.tmp:
interface(quiet=true);
with(linalg):with(inttrans):with(plots):
writeto("C:\\Temp\\tmpAC27.tmp"):
smath_line := proc() local i: for i from 1 to nargs - 2 do args[i]; od: end:
smath_sum := proc() if nargs = 1 then sum( args[1] ); elif nargs = 2 then sum( args[1], args[2] ); elif nargs = 4 then sum( args[1], args[2] = args[3] .. args[4] ); fi: end:
smath_product:= proc() if nargs = 1 then product( args[1] ); elif nargs = 2 then product( args[1], args[2] ); elif nargs = 4 then product( args[1], args[2] = args[3] .. args[4] ); fi: end:
smath_int := proc() if nargs = 2 then int( args[1], args[2] ); elif nargs = 4 then int( args[1], args[2] = args[3] .. args[4] ); fi: end:
smath_diff := proc() if nargs = 2 then diff( args[1], args[2] ); elif nargs = 3 then diff( args[1], args[2] $ args[3] ); fi: end:
smath_sys := proc() { args[i] $ i = 1 .. nargs - 2 }; end:
smath_el := proc() args[1][ args[2] ]; end:
smath_mat := proc() 
local i, j, out: 
out := [ args[j] $ j = 1 .. args[ nargs ] ]: 
for i from 2 to args[ nargs - 1 ] do 
out := out, [ args[j] $ j = ( i - 1 ) * args[ nargs ] + 1 .. ( i - 1 ) * args[ nargs ] + args[ nargs ] ]: 
od: 
 convert( [ out ], array ); 
end:
smath_submatrix := proc() submatrix( args[1], args[2] .. args[3], args[4] .. args[5] ); end:
ans := \
smath_int(`x.1`,`x.1`):
if ( whattype( ans ) = `exprseq` ) then 
    convert( convert( cat( `mat(`, substring( convert( [ans], string ), 2..-2 ), `,`, nops( [ans] ), `,1)` ), string ), symbol );
elif ( whattype( ans ) = `set` ) then 
    convert( convert( cat(`mat(`,substring(convert(map2(op,2,[ans[i]$i=1..nops(ans)]),string),2..-2),`,`,nops(ans),`,1)`), string ), symbol );
elif ( whattype( ans ) = `symbol` ) then 
    convert( convert( eval( ans ), string ), symbol ); 
elif ( whattype( ans ) = `series` ) then 
    convert( convert( ans, polynom) , symbol ); 
elif ( whattype( ans ) = `string` ) then 
    convert( ans, symbol ); 
else 
    convert( convert( ans, string ), symbol ); fi;
quit:

03.03.2016 9:20:29 [<-] C:\Temp\tmpAC27.tmp:
1/2*`x.1`^2
03.03.2016 9:20:29 [<-] 1/2*x.1^2




Russia ☭ forever
Viacheslav N. Mezentsev
thanks 1 user thanked uni for this useful post.
on 03/03/2016(UTC)
Offline Jean Giraud  
#28 Posted : 03 March 2016 07:48:09(UTC)
Jean Giraud

Rank: Guest

Groups: Registered
Joined: 04/07/2015(UTC)
Posts: 6,866
Canada

Was thanked: 981 time(s) in 809 post(s)
Uni,
I most appreciate you know Maple and prove/demonstrate
it takes subscript. Why the 1rst display was wrong ?
Not disaster as we have to copy/paste result, doing
like you mentionned earlier click to see the bracket.

Can you make the attached "Fourier Quantum" work ?

Jean

Fourier Quantum.sm (26kb) downloaded 40 time(s).
Offline uni  
#29 Posted : 03 March 2016 11:49:33(UTC)
uni


Rank: Advanced Member

Groups: Registered, Advanced Member
Joined: 10/11/2010(UTC)
Posts: 1,494
Man
Russian Federation

Was thanked: 1274 time(s) in 745 post(s)
Originally Posted by: Jean Giraud Go to Quoted Post
Why the 1rst display was wrong?


I don't know. May be Andrey will see this and make some comments.

2016-03-03 13-47-02 SMath Studio Desktop - [List2 ].png

Russia ☭ forever
Viacheslav N. Mezentsev
thanks 1 user thanked uni for this useful post.
on 03/03/2016(UTC)
Offline Andrey Ivashov  
#30 Posted : 12 March 2016 02:32:51(UTC)
Andrey Ivashov


Rank: Administration

Groups: Developers, Registered, Knovel Developers, Administrators, Advanced Member
Joined: 11/07/2008(UTC)
Posts: 1,616
Man
Russian Federation

Was thanked: 1978 time(s) in 666 post(s)
Hello.

Originally Posted by: Jean Giraud Go to Quoted Post
Which one is right, which is wrong ?
Forum MapleSolve.gif

Originally Posted by: uni Go to Quoted Post
All answers are correct. I just have invisible braces. If you click on the expression, then they appear. I don't know why it happened

Originally Posted by: uni Go to Quoted Post
I don't know. May be Andrey will see this and make some comments.

Thank you for figuring it out!

Issue was in Math Region. It is fixed now. Fix will be available in new SMath Studio build.

Best regards.
thanks 2 users thanked Andrey Ivashov for this useful post.
on 12/03/2016(UTC),  on 12/03/2016(UTC)
Users browsing this topic
Guest
2 Pages<12
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.