6.5.2. released

[EXPERIMENTAL FEATURE]
If you have a 2D list
tableNested script pic (9)

you can transpose (rotate) it so rows become columns and columns become rows

Also, this block is case-sensitive now
tableNested script pic (11)

The greyscale feature means you can constuct a costume from a single list of pixels - this is asimple example but I'm sure its going to be more useful for something than just this :slight_smile:

image

Cool!

oOoOh cool

cool! i'm very happy the is identical block is case sensitive.

cool!

Yeah, some users have been clamoring for = to be case sensitive, which will happen over my dead body, so we did this to make everyone happy.

(Well, now everyone will want things like the contains block to let you choose what kind of comparison to do. Maybe someday we'll have a relabel option to turn contains into case sensitive contains or something.)

Nice, I know some people for some reason just love case sensitivity :stuck_out_tongue:

Also these other updates look cool but I'm nowhere near smart enough to figure them out..

Sure you are. If you have a table, a matrix, a spreadsheet -- anything two-dimensional -- you can exchange rows and columns, from

1 2 3
4 5 6

to

1 4
2 5
3 6

This is useful because we represent 2D data structures as lists of lists, where each sublist is a row. So it's easier to manipulate rows than columns. So if you want columns, you work with the transpose of your data.

Wow! I must try it!

:wink: :alonzo:

what happens if i transpose a transposed 2d list?

Just reports the same list again. Although, if the list has lists with inequal amounts of items, it fills them in:
before


after

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.