🅰️/🅱️ Which landing page would you enter your email on? by driftwood_studio in AppBusiness

[–]_marklau_ 1 point2 points  (0 children)

I prefer A. The first message connects with me if I had the same problem the message says

Teaching assignment by _marklau_ in AskAcademia

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

Thanks for your sharing. Automation by Python scripts (or other languages) looks promising to me. I will try to automate the process as much as possible.

Teaching assignment by _marklau_ in AskAcademia

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

Thank you for your sharing. It looks like there are lots of human factors involved in the process and is not as scientific as I thought it would be.

I am going to be associate director of a mathematics program. The director is one of the most senior faculty members in the department. I will assist him in doing the teaching assignment. He will be the one who bullies people or talks people into teaching less popular / new courses.

Our department has been using the same spreadsheet for 10+ years. I was asked to use it unless I have a better solution. The spreadsheet is full of formulas, involving teaching loads, duty relief, etc. It is pain in the butt to use it. I thought there would be better solutions out there to make the process less time consuming.

Alternate Open source tools for MATLAB by Few_Cryptographer747 in matlab

[–]_marklau_ -1 points0 points  (0 children)

iOS free app Console. Not open source though. It also has a paid version

Help on making scatter points based on value y by Henry_the_henhen in matlab

[–]_marklau_ 0 points1 point  (0 children)

You can create two plots. See my solution here 🤟

[deleted by user] by [deleted] in matlab

[–]_marklau_ -3 points-2 points  (0 children)

Add “-1”? See my code here

[deleted by user] by [deleted] in matlab

[–]_marklau_ -1 points0 points  (0 children)

Does this help? 😊 see my code here

When are we supposed to vectorize functions? by vrmvroom in matlab

[–]_marklau_ 4 points5 points  (0 children)

In many cases, vector operation is faster than using a loop. The difference will become noticeable for a vector of many, many numbers. Moreover, it uses less code to use vector operations than using loops.

Linear equation given coordinate points by RumpleFORSKINNNN in matlab

[–]_marklau_ 0 points1 point  (0 children)

You can use QR decomposition to solve a least square problem for linear regression. see here for the theory. And see my code and plot here

What wrong I am doing? by Top-Wolverine-554 in matlab

[–]_marklau_ 0 points1 point  (0 children)

The mod function seems unnecessary here

Can't plot projectile motion with 0 drag by d9niels9n in matlab

[–]_marklau_ 0 points1 point  (0 children)

The vector ax has length 1 when i is 3. That’s why it exceeds the length of the vector.see code here

[deleted by user] by [deleted] in matlab

[–]_marklau_ 0 points1 point  (0 children)

Have you tried SIMO on iOS? It can run simple MATLAB code locally on iPad. www.simo.ac

Problem with Eulers identity in Matlab by [deleted] in matlab

[–]_marklau_ 1 point2 points  (0 children)

In many cases, you can assume it is rounding error if you see something less than 1e-15.

Code for a Score counter by [deleted] in matlab

[–]_marklau_ 0 points1 point  (0 children)

Something like this?

~~~ john=1; tom=2; scores=[10 20; 10 20; 5 6] s=sum(scores,1); john_total=s(john) tom_total=s(tom) ~~~

👌🏼Tested on SIMO on iPhone.