Linear Fitting – JAVA / Android [Code/Program]
In this post I would be explaining the code to find the best linear fit for a given set of data points. Or…
Read MoreIn this post I would be explaining the code to find the best linear fit for a given set of data points. Or…
Read MoreThe following are a few commonly asked viva questions for Digital Electronics experiments: What is Boolean Algebra? Define a logi-gate. Why is it…
Read MoreOne might need to show graphs in their app for a lot of reasons. You may want to let the user enter some…
Read MoreAdding basic animations to views such as a TextView, ImageView, EditTexts, etc is now very easy, thanks to the amazing library by daimajia.…
Read MoreYou may have an EditText in your app to take some input from your user for a variety of reasons. But it should…
Read MoreIn this post I will be showing you how to write a code that fits the data-points to an exponential function, like: eq(1)…
Read MoreSince Android 6.0 (Marshmallow), Google has changed the way permissions used to work. Earlier the user granted permissions read/write permission to the app…
Read MoreYou might need to hide the status bar(formerly known as the notification bar) for some activities like your splash screen activity, etc. This…
Read MoreTo Hide/Show the action bar of your activity on Android Devices with API>11, just use the following codes: To Hide the action bar:…
Read MoreTo change the versionCode or the versionName, just open the build.gradle file located at and change the corresponding fields: defaultConfig { applicationId “com.bragitoff.curvefit_leastsquares”…
Read More