Cannot Calculate Error Message

Cannot Calculate Error Message - Functions return a "Cannot calculate" error message - Messages

#1 Posted: 4/18/2018 7:05:31 PM
Ryan Freund

Ryan Freund

19 likes in 339 posts.

Group: User

Since updating to Version 0.99.6671 (07 April 2018)

Several functions now return a "Cannot Calculate" error.
Any thoughts?

Thanks in advance!

Analysis - Fastener Group Elastic Vector Method.sm (20 KiB) downloaded 65 time(s).
#2 Posted: 4/18/2018 7:37:38 PM
Davide Carpi

Davide Carpi

1416 likes in 2873 posts.

Group: Moderator

seems the problem is in matrix(0;#) (probably related with this), not sure if intentional or not.

Clear(r#) does the job BTW.
If you like my plugins please consider to support the program buying a license; for personal contributions to me: paypal.me/dcprojects
#3 Posted: 4/18/2018 10:55:27 PM
Jean Giraud

Jean Giraud

983 likes in 6866 posts.

Group: User

Wrote

Since updating to Version 0.99.6671 (07 April 2018)

Several functions now return a "Cannot Calculate" error.
Any thoughts?

Thanks in advance!


... Smath 6179 ... just make the input/output coherent wrt units

Fastener.PNG

#4 Posted: 4/19/2018 12:03:09 PM
Jean Giraud

Jean Giraud

983 likes in 6866 posts.

Group: User

Wrote

Since updating to Version 0.99.6671 (07 April 2018)

Several functions now return a "Cannot Calculate" error.
Any thoughts?


Switching from 5346 => 6179 created lot of similar "errors",
all sorts of error messages, sometimes easy to correct.
My point here is otherwise, some work sheet can not be repaired.
Once a work sheet is corrupted, I must copy/paste section by section
in blank sheet, up until reconstruction is complete.
Moral: avoid too huge document !



#5 Posted: 4/20/2018 12:47:32 PM
Andrey Ivashov

Andrey Ivashov

2270 likes in 3734 posts.

Group: Super Administrator

Hello.

Just remove first line from fMOIF(s#,n1#,n2#) definition:
r#:matrix(0,n1#)

Why it was added? It does nothing for further calculation. What is a reason for it?
It is not a first time when I see code like matrix(0,0) and actually I do not understand what is it for... SMath Studio never had a possibility to generate a matrix of zero elements.

Best regards.
#6 Posted: 4/20/2018 1:24:24 PM
Arie

Arie

93 likes in 285 posts.

Group: User

Wrote


It is not a first time when I see code like matrix(0,0) and actually I do not understand what is it for... SMath Studio never had a possibility to generate a matrix of zero elements.



I'm not sure what the intent was in this example, but I've used empty matrices before in Matlab. At least in my experiences, it's been used to represent an empty set. It can be useful when try to extract/filter/search through large data sets. You can perform the same sort of function in SMath but you either have to use the IsDefined() function and add an extra condition in your program or create a "dummy" value at index 1 then remember to ignore it.

Feel free to join the SMath Studio Users Discord Channel: https://discord.gg/PayZpJW
1 users liked this post
Andrey Ivashov 4/20/2018 4:06:00 PM
#7 Posted: 4/20/2018 3:16:59 PM
Martin Kraska

Martin Kraska

1222 likes in 2150 posts.

Group: Moderator

Wrote

Hello.

Just remove first line from fMOIF(s#,n1#,n2#) definition:

r#:matrix(0,n1#)

Why it was added? It does nothing for further calculation. What is a reason for it?
It is not a first time when I see code like matrix(0,0) and actually I do not understand what is it for... SMath Studio never had a possibility to generate a matrix of zero elements.

Best regards.



I don't know why the topic starter did it. He seems to allocate a matrix with no rows and then uses linear indexing.
Initializing matrices with no rows or columns is required for subsequent build-up of the contents using stack or augment in a loop.
See Handbuch page 130/131 for examples.

Now that implicit loops are available, this type of generating matrices may loose popularity. Yet initializing with an empty matrix is a safe way to enable assignment to elements (as using Clear() would be).
Martin Kraska Pre-configured portable distribution of SMath Studio: https://en.smath.info/wiki/SMath%20with%20Plugins.ashx
1 users liked this post
Andrey Ivashov 4/20/2018 4:06:00 PM
#8 Posted: 4/20/2018 3:30:34 PM
Ryan Freund

Ryan Freund

19 likes in 339 posts.

Group: User

Quote

Why it was added? It does nothing for further calculation. What is a reason for it?
It is not a first time when I see code like matrix(0,0) and actually I do not understand what is it for...



I used matrix(0,0) in this instance to make sure that r# is "clear". Now that I can use the clear() function I don't need to do this. However, I do use matrix(0,0) in other functions in order to "stack" or "augment" other matrices into the (0,0) matrix. Which is what Martin has described.

So will matrix(0,0) return and error in all cases now? If yes, what is the best way to build up a matrix that starts with nothing? I use this in other functions and I believe is also utilized in Martin's beam calculation snippet (great snippet by the way).
1 users liked this post
Andrey Ivashov 4/20/2018 4:06:00 PM
#9 Posted: 4/20/2018 9:34:02 PM
Jean Giraud

Jean Giraud

983 likes in 6866 posts.

Group: User

Wrote

what is the best way to build up a matrix that starts with nothing?


Matrix/vector don't start with nothing, they self-build from some sort of applied calculations.
If the algorithm is a recursive composition, it may be true that it needs an initial something.
A good such example is Mandelbrot [in Samples, partially solved].
On the other hand, many, very many visitors depose the problem with too little or insuuficient
indications to help track their route to failure.

Utilities Matrix Sequence[N].sm (20 KiB) downloaded 44 time(s).
Image Spot Dalmatian.sm (18 KiB) downloaded 36 time(s).


#10 Posted: 4/21/2018 1:46:28 PM
Jean Giraud

Jean Giraud

983 likes in 6866 posts.

Group: User

... matrices construct by themselves.

Calipers.PNG
#11 Posted: 4/21/2018 11:30:51 PM
Jean Giraud

Jean Giraud

983 likes in 6866 posts.

Group: User

Wrote

what is the best way to build up a matrix that starts with nothing?


Something that is nothing in numerical maths is NaN
NaN => Not a Number.
From recollection, Tom used NaN:= 10^-307
because Tom didn't purchase DAEP [2003 ... $ 350]

#12 Posted: 4/24/2018 7:58:00 PM
Ryan Freund

Ryan Freund

19 likes in 339 posts.

Group: User

I seem to have the same error statement with this worksheet, but I don't define an "empty" matrix.

Sorry to be a pest, any thoughts on this?
Thanks again
Analysis - Beam - Simple Span - V3.sm (190 KiB) downloaded 51 time(s).
#13 Posted: 4/24/2018 8:13:55 PM
Davide Carpi

Davide Carpi

1416 likes in 2873 posts.

Group: Moderator

Wrote

I seem to have the same error statement with this worksheet, but I don't define an "empty" matrix.

Sorry to be a pest, any thoughts on this?
Thanks again
Analysis - Beam - Simple Span - V3.sm (190 KiB) downloaded 51 time(s).



This is because in GetMax you are trying to build a matrix on x1# (that seems to be a variable named x#, this triggers the error)

Use Clear(x1#) or don't pass the second argument (why was needed?)
If you like my plugins please consider to support the program buying a license; for personal contributions to me: paypal.me/dcprojects
#14 Posted: 4/24/2018 10:50:17 PM
Jean Giraud

Jean Giraud

983 likes in 6866 posts.

Group: User

Wrote

I seem to have the same error statement with this worksheet, but I don't define an "empty" matrix.



Smath 6179 generates no error "can not calculate"
  • New Posts New Posts
  • No New Posts No New Posts