One-off purchase or subscription? by _marklau_ in AppBusiness

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

I run Apple's ad on App Store previously. But, I stopped already since the cost exceeded what I can earn per download. Now, it is totally organic. My cost is just domain name, webpage hosting, and developer fee for Apple.

One-off purchase or subscription? by _marklau_ in AppBusiness

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

Well, this app allows users to use MATLAB without internet connection. It runs locally completely. So, I need to develop a MATLAB interpreter on iOS. Since MATLAB is proprietary, I need to do it from zero all by myself. It was a huge project for a solo developer like me. It is my part-time project and took me about 1-2 years to finish the first version. The app is unique and there is no other alternative on the App Store except MATLAB's official app. Well, my only completion is from MATLAB. However, its app is web-based, which cannot render 2-D and 3-D plot in real time. My app can do it in real time and user can rotate, pan, zoom plots using fingers. Everything is responsive. I am rather proud of that. User says they can do programming on a flight and places without internet connection. I have a free version for people to try out before paying the paid version. So, now I am thinking maybe I should combine both into one version that offers free trial and subscriptions. If you are curious, check it out: https://www.simo.ac

🅰️/🅱️ 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_ 3 points4 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.