photo

Koundinya

MathWorks

Last seen: 대략 3년 전 2018년부터 활동

Followers: 0   Following: 0

메시지

Any answers,comments and views posted by me here are my own, and do not represent the views of MathWorks.

통계학

  • Knowledgeable Level 3
  • Knowledgeable Level 2
  • First Answer

배지 보기

Feeds

보기 기준

답변 있음
How do I programmatically set the Argument checkbox of a model workspace variable?
To set arguments programmatically, use "set_param" with the model parameter "ParameterArgumentNames". This parameter is a comma-...

7개월 전 | 2

| 수락됨

답변 있음
Extract documents from a website's hyperlinks
That could be done using webread to retrieve data from the webpage and regexp to extract all the hyperlinks in the page by parsi...

대략 5년 전 | 2

| 수락됨

답변 있음
How can i send data in using "UDP" Command?
Like the error message mentions, the port is already being used by another application ( or by an earlier run of your MATLAB scr...

대략 5년 전 | 0

답변 있음
Help tracking down a MATLAB tutorial/video re: ocean Lagrangian particle tracking/dispersive model with tides
This video on numerical simulation of oil spill is quite similar and might be of help to you: link (To find more video/webinars...

대략 5년 전 | 1

| 수락됨

답변 있음
Timeout occurred when try serial communication
It seems to me like the timeout occurs due to fscanf not returning any serial data. This may be due to fscanf waiting on the ter...

대략 5년 전 | 0

답변 있음
EEG data recorded in arduino filtering in matlab
Interfacing MATLAB and arduino through a serial link is straightforward. You can create a serial port object and use fscanf and ...

5년 초과 전 | 0

답변 있음
How to use 'Timer' function to send ROS messages?
You can use MATLAB timers in this way : % Create a timer object t=timer; Set execution mode of the timer object to fixedRate...

5년 초과 전 | 0

| 수락됨

답변 있음
How can I update a matrix at the end of each 'for loop' and use that updated matrix in the second loop?
It isn't quite clear as to what the exact problem is , but if you want to update the value of R after each iteration : R=A; f...

5년 초과 전 | 0

답변 있음
Using MATLAB to read out strings from Arduino
As the error message suggests, the serial connection is being timed out when reading from serial using fgets. I suspect this is ...

5년 초과 전 | 2

답변 있음
Very-deep super-resolution(VDSR) example doens't work (ver. r2017a)
The example you're trying to open is for the Deep Learning Toolbox, which was released only in R2018b. In earlier versions of MA...

5년 초과 전 | 0

| 수락됨

답변 있음
How can I stich multiple images (about 45) in order to recreate a complete one?
Feature based stitching may work in your case because the images have an overlap. This example shows exactly how that could be d...

5년 초과 전 | 0

답변 있음
Displaying Value beside graph
The value can be displayed in the figure title, legend or the axis label. You could format the variable to be displayed into a s...

5년 초과 전 | 0

답변 있음
getting error creating coefficient matrix for cramers rule
The zeros function takes array dimensions as input and returns an array of zeros. % co-efficient matrix coef=zeros([n n]); He...

5년 초과 전 | 0

답변 있음
How to automatically run a matlab script on data in a seperate file on your computer?
Data from the .txt file can be directly read in MATLAB without converting it to .xlsx file, depending on the kind of data it con...

5년 초과 전 | 0

| 수락됨

답변 있음
I need help storing all column vectors from a for loop in an array
You could create a new array, W_k with each coulmn representing the value of W after every iteration : clc; close all; clear; ...

5년 초과 전 | 0

답변 있음
Sending over TCP/IP from simulink to a localhost.
To send data from the simulink model to a server running on the same machine, you could just specify the remote address as 'loca...

5년 초과 전 | 0

답변 있음
use acceleration sensor to real time simulation
These Simulink documentation links on basic UDP and real-time UDP communication should get you started.

5년 초과 전 | 0

답변 있음
Best/fastest way to call MATLAB routine from C repeatedly
You could try using the MATLAB Engine API tp speed up things a bit. The MATLAB Engine API for C and C++ provides a convenient w...

5년 초과 전 | 1

| 수락됨

답변 있음
Simulink UDP data split
Assuming that output Data signal from the UDP receive block is a vector, you could try using the Simulink demux block to 'split...

5년 초과 전 | 0

답변 있음
Create a vector containing five elements such that the elements are equally spaced when you take the logarithm of the vector.
You can use the _<https://imathworks.com/help/matlab/ref/logspace.html logspace>_ function.

거의 6년 전 | 0

| 수락됨

답변 있음
How to run a for loop n times with a different size matrix inside the loop
You must be getting the error ' _Matrix dimensions must agree_ ', this is because theta = linspace(0,2*pi,100); creates...

거의 6년 전 | 0

| 수락됨

답변 있음
How can I compute mean and variance of a cyclogram?
You can create a <https://mathworks.com/help/matlab/ref/timeseries.html timeseries> object for your data (X,Y) and use the MATLA...

거의 6년 전 | 0

| 수락됨

답변 있음
How to get data some data from one vector and save it in another vector
The file ( _Data_f_b.mat_) you have attached has two _500x2_ vectors _data_b_ and _data_f_. To copy the elements from row index ...

거의 6년 전 | 0

| 수락됨

답변 있음
How to read an excel file in SVN repository (tortoise svn) using matlab?
If it is a local svn repository, you can read data from any excel file using <https://mathworks.com/help/matlab/ref/xlsread.htm...

거의 6년 전 | 1

| 수락됨