Answered
Is Arduino Ethernet Shield R3 supported?
Can you use the thingSpeakRead and thingSpeakWrite blocks?

3 years ago | 0

Answered
Is multifield update counted as one message or multiple?
See the licensing FAQ, question 4. And the answer to your question is one.

3 years ago | 0

Answered
How can i add Econometrics Toolbox to thingspeak
You will need to use the same MathWorks account for your ThingSpeak work as for the desktop. ThingSpeak will take care of looki...

3 years ago | 0

Answered
Thingspeak widget customization when posting the widget onto an external website using iframe
You cannot use the ThingSpeak gauge without the iframe. You may be able to embed a google gauge on your website direcly, and re...

3 years ago | 0

Solved


Find the longest sequence of 1's in a binary sequence.
Given a string such as s = '011110010000000100010111' find the length of the longest string of consecutive 1's. In this examp...

3 years ago

Answered
ESP NOW provided sensor datas to ESP32 and Matlab serial communication
You can only update every 15 seconds with a free license, but you can use the bulk update endpoint to get a higher density of po...

3 years ago | 1

| accepted

Answered
ESP NOW provided sensor datas to ESP32 and Matlab serial communication
Are you able to run a WiFi client at the same time as the ESP NOW? You could connect to a WiFi network to send the values to T...

3 years ago | 0

Solved


What is the distance from point P(x,y) to the line Ax + By + C = 0?
Given a point, P(x,y), find the distance from this point to a linear line. INPUTS: x, y, A, B, C OUTPUTS: d, the distance ...

3 years ago

Solved


Sum of series II
What is the sum of the following sequence: Σ(2k-1)^2 for k=1...n for different n?

3 years ago

Solved


Calendar Matrix
Return a calendar matrix for the given values of month and year. Assume that Sunday is the first day of the week. The resulting ...

3 years ago

Solved


Approximation of Pi
Pi (divided by 4) can be approximated by the following infinite series: pi/4 = 1 - 1/3 + 1/5 - 1/7 + ... For a given number of...

3 years ago

Solved


Sum of series I
What is the sum of the following sequence: Σ(2k-1) for k=1...n for different n?

3 years ago

Answered
Dynamic data display in ThingSpeak dashboard
There is a plugin app in ThingSpeak that you could use to crate a javascript app with a dropdown menu (I suspect, though I haven...

3 years ago | 0

| accepted

Solved


Predict Cricket Stridulation Rate from Air Temperature
Stridulation is the process that creates a cricket's “chirp” by rubbing their wings or legs. According to the Old Farmer's Alma...

3 years ago

Solved


Find Air Temperature from Cricket Stridulation Rate
Stridulation is the process that creates a cricket's “chirp” by rubbing their wings or legs. According to the Old Farmer's Alma...

3 years ago

Answered
Project Image on a Mesh
You can use the same arguments used to create the mesh to create the warped surface, then plot the mesh and hold the plot while ...

3 years ago | 0

Answered
My ThingSpeak doesn't receive particular data regularly
Now I see the issue. You should send one update to ThingSpeak instead of building them seperately for each field. You care act...

3 years ago | 0

| accepted

Solved


Find the sides of an isosceles triangle when given its area and height from its base to apex
Find the sides of an isosceles triangle when given its area and the height from its base to apex. For example, with A=12 and ...

3 years ago

Answered
How to partially delete data in ThingSpeak channel?
A ThingSpeak channel is supposed to act a bit like a lab notebook. As such, specific deletion has been passed in favor of other...

3 years ago | 0

Answered
My ThingSpeak doesn't receive particular data regularly
Do you have a paid thingSpeak license? The update rate for the free account is only once per 15 seconds. If you have a free ac...

3 years ago | 0

Solved


Height of a right-angled triangle
Given numbers a, b and c, find the height of the right angled triangle with sides a and b and hypotenuse c, for the base c. If a...

3 years ago

Solved


Can we make a triangle?
Given three positive number, check whether a triangle can be made with these sides length or not. remember that in a triangle su...

3 years ago

Solved


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...

3 years ago

Solved


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

3 years ago

Solved


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

3 years ago

Solved


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...

3 years ago

Solved


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...

3 years ago

Solved


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...

3 years ago

Solved


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,...

3 years ago

Solved


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...

3 years ago

Load more