Resuelto


Calculate the area of a triangle between three points
Calculate the area of a triangle between three points: P1(X1,Y1) P2(X2,Y2) P3(X3,Y3) these three points are the vert...

más de 3 años hace

Resuelto


Pi Estimate 1
Estimate Pi as described in the following link: <http://www.people.virginia.edu/~teh1m/cody/Pi_estimation1.pdf>

más de 3 años hace

Resuelto


radius of a spherical planet
You just measured its surface area, that is the input.

más de 3 años hace

Resuelto


Calculate area of sector
A=function(r,seta) r is radius of sector, seta is angle of sector, and A is its area. Area of sector A is defined as 0.5*(r^2...

más de 3 años hace

Resuelto


Rounding off numbers to n decimals
Inspired by a mistake in one of the problems I created, I created this problem where you have to round off a floating point numb...

más de 3 años hace

Resuelto


intersection of matrices
Given two matrices filled with ones and zeros, determine if they share a common row, column entry. These matrices are of identic...

más de 3 años hace

Resuelto


Check if number exists in vector
Return 1 if number _a_ exists in vector _b_ otherwise return 0. a = 3; b = [1,2,4]; Returns 0. a = 3; b = [1,...

más de 3 años hace

Resuelto


Return unique values without sorting
If the input vector A is [42 1 1], the output value B must be the unique values [42 1] The values of B are in the same order a...

más de 3 años hace

Resuelto


Generate N equally spaced intervals between -L and L
Given N and L, return a list of numbers (in ascending order) that divides the interval [-L L] into N equal-length segments. F...

más de 3 años hace

Respondida
I want to display negative temperature on channel view
Here are a few ways to get negative numbers into ThingSpeak or to plot them in MATLAB. https://api.thingspeak.com/update?api_ke...

más de 3 años hace | 0

Resuelto


Getting the indices from a matrix
Inspired by Problem 645. Getting the indices from a matrix. Given a matrix A (or a vector), return the indices (always in row...

más de 3 años hace

Respondida
Is thingspeak free version account expire after one year
See the licensing FAQ. Free ThingSpeak licenses will renew yearly in the month you created the license assuming you meet the log...

más de 3 años hace | 0

Resuelto


Matlab Basics - Rounding III
Write a script to round a large number to the nearest 10,000 e.g. x = 12,358,466,243 --> y = 12,358,470,000

más de 3 años hace

Resuelto


Matlab Basics - Rounding II
Write a script to round a variable x to 3 decimal places: e.g. x = 2.3456 --> y = 2.346

más de 3 años hace

Resuelto


Check that number is whole number
Check that number is whole number Say x=15, then answer is 1. x=15.2 , then answer is 0. http://en.wikipedia.org/wiki/Whole_numb...

más de 3 años hace

Discussion


Community contests to help you improve your MATLAB coding skills
Hopefully you are aware that MATLAB is built into ThingSpeak. Right now, MathWorks is hosting two contentsthat can help you lea...

más de 3 años hace | 0

Resuelto


MATLAB Basic: rounding IV
Do rounding towards plus infinity. Example: -8.8, answer -8 +8.1 answer 9 +8.50 answer 9

más de 3 años hace

Resuelto


MATLAB Basic: rounding III
Do rounding towards minus infinity. Example: -8.8, answer -9 +8.1 answer 8 +8.50 answer 8

más de 3 años hace

Resuelto


MATLAB Basic: rounding II
Do rounding nearest integer. Example: -8.8, answer -9 +8.1 answer 8 +8.50 answer 9

más de 3 años hace

Resuelto


MATLAB Basic: rounding
Do rounding near to zero Example: -8.8, answer -8 +8.1 answer 8

más de 3 años hace

Respondida
App designer table handling
Thanks for showing the result Karol. Im taking your solution and adding it to the answers to help others find it. Solved by ...

más de 3 años hace | 0

Respondida
Can't send data to Thingspeak from Microbit DFRobot kit
Are you able to update the channel using the GET command in your browser address bar? Click on your channel view and use the A...

más de 3 años hace | 0

Respondida
Unable to write data by bulk update *csv method [ESP8266, Arduino framework]
I havent tested this recently, but I found it in an old folder and I expect that it works. I had to escape some values. Please ...

más de 3 años hace | 0

Respondida
Unable to write data by bulk update *csv method [ESP8266, Arduino framework]
The arduino client should take care of url encoding your data. I would use the raw text in the value of char csv_feed Perhap...

más de 3 años hace | 0

Respondida
How can I upload and plot temperature values that are both above zero (e.g., ambient) and below zero (e.g., in a freezer)?
I think the library answer seems best. Here is an example using the dallas one wire (that has some other dependancies built in ...

más de 3 años hace | 0

Respondida
Will generating an alert API key reset the USER API key?
The alert API key and user API key are seperate. Genenrating an alert API key wil not change your user API key.

más de 3 años hace | 0

| aceptada

Respondida
How to check DataPlugin in MATLAB
This pagedesribes how you can read MATLAB files into labview witha dataplugin and this answer describes some ways to import l...

más de 3 años hace | 0

Respondida
HOW TO CLEAN NULL FROM MY GET QUERY
We reccomend using multiple channels to record your data in the case of multiple devices or sensors with different frequencies. ...

más de 3 años hace | 0

Respondida
ThingSpeak Channel stopped receiving data since April 13th 2022
We strongly reccomend using the thingSpeak library for arduino and esp if possible. I dont see the problem directly. I would r...

más de 3 años hace | 0

Respondida
Why arduino send data to thingspeak only once?
Your device will continue to send data once disconnected from the USB port, as long as it is powered and within the WiFi range. ...

más de 3 años hace | 0

Cargar más