![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/5863695.png)
Programming Languages:
Python, C, Javascript, MATLAB, Ruby, HTML, CSS, Arduino, Perl
Professional Interests:
AI for Signals and Images, AI in Predictive Maintenance
Python, C, Javascript, MATLAB, Ruby, HTML, CSS, Arduino, Perl
Professional Interests:
AI for Signals and Images, AI in Predictive Maintenance
Feeds
답변 있음
Connect Matlab with chatgpt
Try the "Large Language Models (LLMs) with MATLAB" GitHub repo. You can open directly in MATLAB Online and try it out. This requ...
Connect Matlab with chatgpt
Try the "Large Language Models (LLMs) with MATLAB" GitHub repo. You can open directly in MATLAB Online and try it out. This requ...
9개월 전 | 0
답변 있음
3D surface (frontier) from a set of points
You can use the 3D surface plot. x=[0.0080,0.0044,0.0068,0.0040,0.0061,0.0068,0.0067,0.0041,0.0034,0.0049,0.0058,0.0069,0.0037,...
3D surface (frontier) from a set of points
You can use the 3D surface plot. x=[0.0080,0.0044,0.0068,0.0040,0.0061,0.0068,0.0067,0.0041,0.0034,0.0049,0.0058,0.0069,0.0037,...
11개월 전 | 1
답변 있음
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...
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...
대략 1년 전 | 1
답변 있음
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...
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...
1년 초과 전 | 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...
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...
1년 초과 전 | 1
| 수락됨
답변 있음
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 ...
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 ...
1년 초과 전 | 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?...
1년 초과 전 | 답변 수: 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...
Read data from channel twice a day
You need three TimeControls that call thee MATLAB Analytics scripts (thingSpeakRead / thingSpeakWrite) and then one final MATLAB...
1년 초과 전 | 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...
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...
1년 초과 전 | 3
답변 있음
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...
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...
1년 초과 전 | 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...
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...
1년 초과 전 | 2
| 수락됨
답변 있음
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...
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...
대략 2년 전 | 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: ...
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: ...
대략 2년 전 | 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...
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...
대략 2년 전 | 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...
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...
대략 2년 전 | 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...
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...
대략 2년 전 | 1
답변 있음
won't let me in!!
Try this Answer: https://www.mathworks.com/matlabcentral/answers/99067-why-do-i-receive-license-manager-error-9
won't let me in!!
Try this Answer: https://www.mathworks.com/matlabcentral/answers/99067-why-do-i-receive-license-manager-error-9
2년 초과 전 | 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
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
2년 초과 전 | 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
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
2년 초과 전 | 0
답변 있음
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 ...
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 ...
2년 초과 전 | 1
답변 있음
If I have Matlab trial version can i use matlab online ?
Try accessing MATLAB Online directly: https://matlab.mathworks.com/
If I have Matlab trial version can i use matlab online ?
Try accessing MATLAB Online directly: https://matlab.mathworks.com/
2년 초과 전 | 0
답변 있음
How do I get to boldface the numbers that I input?
I know some fprintf tricks for text formatting, although it might not be elegant. You can use strong inside of fprintf. outputN...
How do I get to boldface the numbers that I input?
I know some fprintf tricks for text formatting, although it might not be elegant. You can use strong inside of fprintf. outputN...
2년 초과 전 | 0
답변 있음
How do I display the splash screen on Linux?
Great question... I looked in the doc for startup options on Linux: https://www.mathworks.com/help/matlab/matlab_env/start-matla...
How do I display the splash screen on Linux?
Great question... I looked in the doc for startup options on Linux: https://www.mathworks.com/help/matlab/matlab_env/start-matla...
2년 초과 전 | 1
답변 있음
Can't open live edit mlx files MATLAB 2016b
This was a known bug and fixed in R2016b. If you still use older versions, there is a workaround listed in the Bug Report: https...
Can't open live edit mlx files MATLAB 2016b
This was a known bug and fixed in R2016b. If you still use older versions, there is a workaround listed in the Bug Report: https...
2년 초과 전 | 0
답변 있음
how do i get the color gray
As others have pointed out, gray is the result of the Red, Green, and Blue values being equal somewhere between 0 and 1 where bl...
how do i get the color gray
As others have pointed out, gray is the result of the Red, Green, and Blue values being equal somewhere between 0 and 1 where bl...
거의 3년 전 | 6
| 수락됨
답변 있음
Matlab versions supported on Windows 11?
There is a related MATLAB Answer: https://www.mathworks.com/matlabcentral/answers/1466556-are-mathworks-products-compatible-with...
Matlab versions supported on Windows 11?
There is a related MATLAB Answer: https://www.mathworks.com/matlabcentral/answers/1466556-are-mathworks-products-compatible-with...
3년 초과 전 | 2
| 수락됨
답변 있음
MATLAB Stack Exchange
There are a lot of MATLAB questions on Stack Overflow. Here's a link to different MATLAB Communities: https://www.mathworks.com/...
MATLAB Stack Exchange
There are a lot of MATLAB questions on Stack Overflow. Here's a link to different MATLAB Communities: https://www.mathworks.com/...
3년 초과 전 | 0
답변 있음
Professional looking Matlab FAQ
There is now a MATLAB FAQs page on MATLAB Answers: https://www.mathworks.com/matlabcentral/answers/faqs
Professional looking Matlab FAQ
There is now a MATLAB FAQs page on MATLAB Answers: https://www.mathworks.com/matlabcentral/answers/faqs
3년 초과 전 | 1
답변 있음
Where Can I Find Reference URLS to Make Answering Questions Here Easier?
There is now a MATLAB FAQs section of MATLAB Answers: https://www.mathworks.com/matlabcentral/answers/faqs
Where Can I Find Reference URLS to Make Answering Questions Here Easier?
There is now a MATLAB FAQs section of MATLAB Answers: https://www.mathworks.com/matlabcentral/answers/faqs
3년 초과 전 | 0
답변 있음
How can I display just a small section of my chart?
Try setting results equal to 10, or days equal to 1. For more options, check out the ThingSpeak documentation: https://www.mathw...
How can I display just a small section of my chart?
Try setting results equal to 10, or days equal to 1. For more options, check out the ThingSpeak documentation: https://www.mathw...
거의 4년 전 | 1