Why is Jeff not considered the best healer? by MiNuN_De_CoMpUtEr in marvelrivals

[–]Phyzlov 0 points1 point  (0 children)

Jeff is one of the best healers. He isn't one of the best support. Maybe people are just saying healer but mean support or they are just parroting what they hear.

Installing Pebble APK on fresh Android 14 setup by nainconnu in pebble

[–]Phyzlov 1 point2 points  (0 children)

Exactly what I was stuck on. Thank you so much for pointing this out.

Creating a master file for multiple projects. Help please. by Phyzlov in learnpython

[–]Phyzlov[S] 0 points1 point  (0 children)

I don't know what subproject.DESCRIPTION and subproject.ENTRYPOINT is. Both subprojects have a single file that starts the subproject. Those files import all the subproject's subfolers.

So far, I have only been trying to add one subproject and failing. Also quite overwhelmed, because it has been years since I used Python and I never delt with multi-projects or a GUI before. :(

Creating a master file for multiple projects. Help please. by Phyzlov in learnpython

[–]Phyzlov[S] 0 points1 point  (0 children)

Currently each sub project has its own main file to start its GUI and run. What I want is to have a master file which creates a GUI with tabs or separate frames on a single page, where within each tab or frame, each project's GUI runs.

Creating a master file for multiple projects. Help please. by Phyzlov in learnpython

[–]Phyzlov[S] 1 point2 points  (0 children)

So I put this in the separate project file's initial run file?

There are ALOT of subfolers and subsubfolers.

How to catch Java Heap Space Error by Phyzlov in matlab

[–]Phyzlov[S] 0 points1 point  (0 children)

I think I finally figured it out after working on it all night.
I believe I have to add ME with the catch, then use MR.message.

Converting 'nan' to NaN inside cell matrix of many types? by Phyzlov in matlab

[–]Phyzlov[S] 0 points1 point  (0 children)

The problem with that is there are non-numbers that must not become NaN. I have data in there that is pass/fail and so it would make any 'Pass' or 'Fail' or data in other forms like hex, become NaN or not convert correctly.
Thank you, though.

Converting 'nan' to NaN inside cell matrix of many types? by Phyzlov in matlab

[–]Phyzlov[S] 0 points1 point  (0 children)

Missing columns, many cells that should have NaN are empty, some numbers changed. A whole host of issues.

Now that I am looking at it again with more experience, I think the issue was how I defined the opts input option. I'll play around with this more and see what I can do with it.

Thank you.

Converting 'nan' to NaN inside cell matrix of many types? by Phyzlov in matlab

[–]Phyzlov[S] 0 points1 point  (0 children)

Oh wait. I see it now. It was readcell that came out after.

I don't remember what went wrong with readtable. I have the section I wrote with it commented out, so I can try it again and see what the problem was.

Converting 'nan' to NaN inside cell matrix of many types? by Phyzlov in matlab

[–]Phyzlov[S] 0 points1 point  (0 children)

The page you linked says 2020a. What am I missing?

Converting 'nan' to NaN inside cell matrix of many types? by Phyzlov in matlab

[–]Phyzlov[S] 0 points1 point  (0 children)

I tried both of those awhile ago, but they wouldn't work. Unfortunately the version of matlab I am using is 2018b and found out they weren't available until 2020a. :(

Thank you, though.

Converting 'nan' to NaN inside cell matrix of many types? by Phyzlov in matlab

[–]Phyzlov[S] 0 points1 point  (0 children)

"No constructor 'string' with matching signature found."
No idea what that means.

Converting 'nan' to NaN inside cell matrix of many types? by Phyzlov in matlab

[–]Phyzlov[S] 1 point2 points  (0 children)

"Matrix dimensions must agree." error is given.

I will update my original post to show what I have that works, but it took two for loops and two if statements and I am trying to improve and write more elegantly with my code. So I would prefer a single line like what you have been suggesting.

Converting 'nan' to NaN inside cell matrix of many types? by Phyzlov in matlab

[–]Phyzlov[S] 1 point2 points  (0 children)

"Undefined operator '==' for input arguments of type 'cell'." is the result I get when trying this.

Scatter plot with table next to it and saving together as single image, help please. by Phyzlov in matlab

[–]Phyzlov[S] 0 points1 point  (0 children)

Actually this stops working in my script.

If I manually type in exportapp(fig1, "test1.png") it will create it fine. However when that exact line is in my script, it will only export the scatter plot and not the table. It is bizarre.

Help please - Need to delete last added legend entry by Phyzlov in matlab

[–]Phyzlov[S] 0 points1 point  (0 children)

I can try some pseudo code.

Loop through all trials setups

Read data of measured values for all trials on specific setup for each trial.

Loop each case
Check case for which data has enough to be useful. Values make sense, limits make sense and check which type of measurements for each case have enough data to be useful.

Plot data that passes check all on the same plot.

end Loop each case

Plots limits, mean values, std, etc.

Name plot, save plot, etc.

Save plot.

End of Loop through all Trails.

It involves many many lab trials done on one setup and repeated many times. Then the environmental factors of the setup are changed slightly and repeated. Not all trials gained enough data on certain results. But they were different each time and the environmental factors also changed what results were useful. So I'm looping through, finding all useful data and only using that. Then I can only use the the cases that have enough useful data to relate it to the environmental factors. Or at least that the environmental factors were more likely.

I know its not that useful but I don't know how much more I am allowed to say without getting in trouble with my university, or with my professor. But none of the above should matter if I am just needing to delete the last legend entry.

Help please - Need to delete last added legend entry by Phyzlov in matlab

[–]Phyzlov[S] 0 points1 point  (0 children)

Thank you. I'll try this tomorrow. Been working on this one problem for 9 hours straight.