Community Profile

photo

avinash pabbireddy


Active since 2013

Professional Interests: signal processing and robotics

Statistics

  • Thankful Level 1

View badges

Content Feed

View by

Question


How to load data from a .txt file to matlab in the form of a matrix???
I am saving data in a .txt file from c++ code which is continuously updating in real time.can i get this real time data loaded i...

10 years ago | 0 answers | 0

0

answers

Question


i have a code written in visual studio to get data from 4 sensors and it is using matlab for real time plot can u please tell me how to save data from visual studio to matlab workspace??
include "stdafx.h" HANDLE g_hComPort = INVALID_HANDLE_VALUE; // handle for the serial communication port mxArray* g_mxSi...

10 years ago | 0 answers | 0

0

answers

1

answer

Question


i am trying to get data from a sensor for a specific time i want to get data n a matrix which updates automatically can anyone help in creating a dynamic matrix
clc; close all; clear all; delete(instrfindall); data=zeros(2000,1) s = serial ( 'COM3', 'BaudRate', 115200); fop...

10 years ago | 1 answer | 0

1

answer

Question


i'm acquiring data from ni9234 and at the same time i'm collecting values from xbee i want these two codes to execute at the same time in a single matlab file
clc; close all; clear all; delete(instrfindall); s = serial ( 'COM5', 'BaudRate', 115200); set(s, 'Timeout',0.08048...

10 years ago | 0 answers | 0

0

answers

Question


i'm trying to get data from force sensors using Xbee and the buffer size is 512 i want the xbee to collect the data for 1 minute exactly
clc; close all; clear all; delete(instrfindall); s = serial ( 'COM5', 'BaudRate', 115200); fopen(s); format shor...

10 years ago | 1 answer | 0

1

answer

Question


i am trying to get emg and force data simultaneously using parallel computing tool box but i am unable to read the data???
i am using the below code if matlabpool('size') == 0 matlabpool open local 2 data1=zeros([122880,2]); data2=zero...

10 years ago | 1 answer | 0

1

answer

Question


how can we run two matlab codes simultaneously in a single file where these two are independent to eadh other??
tic clc; close all; clear all; delete(instrfindall); s = serial ( 'COM5', 'BaudRate', 115200); set(s, 'Timeout',...

10 years ago | 1 answer | 0

1

answer

Question


can anyone help me with real time data plot using ni 9234
s = daq.createSession('ni'); s.addAnalogInputChannel('cDAQ2Mod1', 0, 'Voltage'); s.addAnalogInputChannel('cDAQ2Mod1', 1, 'Vo...

10 years ago | 0 answers | 0

0

answers

Answered
i'm trying to use hmm tool box but i'm getting some error with the following code please help me out
i downloaded the tool box and i'm using this path C:\Documents and Settings\temp\Desktop\avinash\sto\HMM\HMMall\HMM as my curren...

10 years ago | 0

Question


i'm trying to use hmm tool box but i'm getting some error with the following code please help me out
O = 6; Q = 6; prior0 = normalise(rand(Q,1)); transmat0 = mk_stochastic(rand(Q,Q)); obsmat0 = mk_stochastic(rand(Q,...

10 years ago | 2 answers | 0

2

answers