Community Profile

photo

Hans Scharler

MathWorks

Last seen: Today 2011 年からアクティブ

Community manger, open source program manager, maker, and coffee drinker.

Programming Languages:
Python, C, Javascript, MATLAB, Ruby, HTML, CSS, Arduino, Perl
Professional Interests:
AI for Signals and Images

統計

All
  • MATLAB Flipbook Mini Hack Participant
  • MATLAB Mini Hack 2022 Participant
  • Knowledgeable Level 3
  • Thankful Level 4
  • Solver
  • Commenter
  • First IoT Channel
  • MATLAB Analytics
  • GitHub Submissions Level 1
  • Personal Best Downloads Level 2
  • MATLAB Mini Hack Participant
  • Treasure Hunt Participant

バッジを表示

Content Feed

送信済み


DFS Fantasy Football Lineup Optimizer
Optimize your Daily Fantasy Sports (DFS) fantasy football lineups with MATLAB and the Optimization Toolbox

3ヶ月 前 | ダウンロード 2 件 |

Thumbnail

Highlighted


New Community Feature: AI Chat Playground
The MATLAB AI Chat Playground is now open to the whole community! Answer questions, write first draft MATLAB code, and generate ...

4ヶ月 前 | 22

回答済み
Matlab Crash on Sonoma(macOS 14.0)
From another support article: https://www.mathworks.com/matlabcentral/answers/2044833-is-matlab-compatible-with-macos-sonoma Ma...

4ヶ月 前 | 1

公開済み


An interview with MATLAB playground: Build your IoT Analysis and Plots for ThingSpeak
The MATLAB AI Chat Playground was launched on the MATLAB Central community at the end of November. I recently got the...

4ヶ月 前

Thumbnail

回答済み
How to change UI from partially Chinese to fully English on M2 Mac with R2023b?
It looks like you tried removing "Chinese, Simplified" from the preferred languages list to fix this issue. This should be a tem...

5ヶ月 前 | 0

回答済み
Add column vector to the end of another column vector
A = rand(50,1); % example 50x1 vector B = rand(100,1); % example 100x1 vector C = vertcat(A,B) % concatenate A and B verticall...

5ヶ月 前 | 0

| 採用済み

回答済み
What is vectorization? Why use vectorization instead of loops?
Vectorization is about replacing explicit loops with matrix and vector operations. This can lead to more readable and efficient ...

5ヶ月 前 | 0

| 採用済み

質問


What is vectorization? Why use vectorization instead of loops?
Over at Reddit, a user asked about vectorization vs. a loop. This is a fundemental concept in MATLAB. So, what is vectorization?...

5ヶ月 前 | 1 件の回答 | 0

1

回答

回答済み
Read data from channel twice a day
You need three TimeControls that call thee MATLAB Analytics scripts (thingSpeakRead / thingSpeakWrite) and then one final MATLAB...

6ヶ月 前 | 0

回答済み
Connecting to ChatGPT using API
I have updated my answer using the built-in webwrite function from MATLAB. % Define the prompt prompt = "What is the capital o...

6ヶ月 前 | 2

回答済み
Truncated answers when querying chatgpt with Matlab
The "max_tokens" parameter limits the response from OpenAI language models. Try increasing it to 1000. parameters = struct('pr...

6ヶ月 前 | 1

回答済み
matlab.net vs webwrite
There were three issues with the commented function. When you use headers for webwrite you do not have to include the ":" in th...

6ヶ月 前 | 2

| 採用済み

Highlighted


22 Years of the MATLAB Central community!
Here's a screenshot from 22 years ago. Thanks for building one of the best engineering and science communities together.

6ヶ月 前 | 14

公開済み


Edit ThingSpeak Code Easier in MATLAB Online
If you want to upgrade your ThingSpeak capabilities, have a look at the ThingSpeak repository of template codes that open...

9ヶ月 前

Thumbnail

Highlighted


MATLAB EXPO 2023: Sign up now for free
MATLAB EXPO is coming up soon and it is time to register. It's free and open to everyone. You will have the opportunity to conne...

11ヶ月 前 | 9

Highlighted


Try Dark Mode in the MATLAB Desktop Beta
Please use the feedback button in the MATLAB Desktop beta to send us your feedback, input, and experience. Enjoy!

12ヶ月 前 | 16

回答済み
code for neutrosophic pareto distribution
Neutrosophic Pareto is a concept used in multi-objective optimization problems when some of the information about the problem is...

約1年 前 | 0

回答済み
Connecting to ChatGPT using API
I have been researching the davinci/completions space and have working MATLAB code using net http. Get your API Key at OpenAPI: ...

約1年 前 | 9

| 採用済み

回答済み
Too many output arguments - appdesigner
It looks like you are trying to figure out if treeplotpMenuSelected is selected. You need to check it's Value property. functio...

約1年 前 | 1

回答済み
how to load and read excel data into matlab?
I would take a look at "readtable" in MATLAB. filename = 'myfile.xlsx'; T = readtable(filename); https://www.mathworks.com/he...

約1年 前 | 0

回答済み
Websocket on mqtt.thingspeak.com port 80 still available?
The address changed for the ThingSpeak MQTT broker: mqtt3.thingspeak.com <https://www.mathworks.com/help/thingspeak/mqtt-basi...

約1年 前 | 1

公開済み


The Slovak University of Technology Fosters Project-Based Learning Using ThingSpeak in Industrial IoT Course
“MATLAB and ThingSpeak extended tools necessary for remote learning and technologies covered by our course. Project-based...

1年以上 前

Thumbnail

公開済み


Professor at Arizona State Uses MATLAB and ThingSpeak to Introduce Students to AI and IoT
Professor Chao Wang at Arizona State University recently introduced a course on AI and IoT to first-year engineering...

1年以上 前

Thumbnail

回答済み
won't let me in!!
Try this Answer: https://www.mathworks.com/matlabcentral/answers/99067-why-do-i-receive-license-manager-error-9

1年以上 前 | 0

回答済み
installing MATLAB: license checkout failed: license manage error-9. username does not match the username in the license file
Try this Answer: https://www.mathworks.com/matlabcentral/answers/99067-why-do-i-receive-license-manager-error-9

1年以上 前 | 0

回答済み
License Checkout failed License manager Error -9
Try this Answer: https://www.mathworks.com/matlabcentral/answers/99067-why-do-i-receive-license-manager-error-9

1年以上 前 | 0

解決済み


Maximum value in a matrix
Find the maximum value in the given matrix. For example, if A = [1 2 3; 4 7 8; 0 9 1]; then the answer is 9.

1年以上 前

回答済み
how to remove all variables in the workspace
You can use clear command and specifiy the variable name right in your code. newVar = 42 newVar = newVar + 3 clear newVar ...

1年以上 前 | 1

回答済み
If I have Matlab trial version can i use matlab online ?
Try accessing MATLAB Online directly: https://matlab.mathworks.com/

1年以上 前 | 0

公開済み


New Feature: ThingSpeak Now Supports Images
Many users have asked, and it’s finally here: Your devices can upload images to ThingSpeak! With this new feature, you can...

1年以上 前

Thumbnail

さらに読み込む