photo

PT


Last seen: 29 dagar ago Active since 2013

Followers: 0   Following: 0

Message

Statistics

MATLAB Answers

0 Questions
9 Answers

RANK
3 038
of 300 365

REPUTATION
20

CONTRIBUTIONS
0 Questions
9 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
1

RANK
 of 20 933

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 168 262

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Knowledgeable Level 2
  • First Answer

View badges

Feeds

View by

Answered
How do I reserve a size for my data so that zero's are not dropped or forgotten?
Use datevec(datenum('01/02/0003')) The output will be in the form of [ Year Month Day Hour Minute Second ...

mer än 12 år ago | 0

Answered
Can MATLAB increment multiple rows of array data?
%% Load filename = 'test.txt'; fh = fopen(filename, 'r'); Table = []; Rows = {}; ncol = []; j = 0; ...

mer än 12 år ago | 1

Answered
How do I extract certain characters using for loop?
You define the loop index to increase by 5, instead of by 1. a = 'ABCDEFGHIJKLMNO'; for i = 1:5:length(a) b = a...

mer än 12 år ago | 0

Answered
using an array in a for loop
array = 1:100; newarray = cell(length(array),1); for i = 1:length(array) newarray(i) = {['Name' num2str(array(i...

mer än 12 år ago | 0

| accepted

Answered
Is it possible to have a switch case statement with the number of cases based on the length of a variable?
I am not aware there is any way to dynamically populate a switch statement. However, you can populate the popup menu during runt...

mer än 12 år ago | 0

Answered
Edit line in text document
Two issues: 1. As the help of fopen states, you must have a fseek between fgetl and fprintf. 2. You are changing the overa...

mer än 12 år ago | 0

Answered
Using an if clouse, and based on a generated code ie User ID displayed in a textbox, how can i link the ID to a user name of choice by displaying the name in a txt box
Let's assume the following: The tag for the pushbutton is "update". The tag for the User ID editbox is "userid". The tag for ...

mer än 12 år ago | 0

| accepted

Answered
Improving a search algorithm
function y = binge(x) binge= [00000001, 00000010, 00000020, 00000021, .........,90000000; 0.11111, 2.4433, ......

mer än 12 år ago | 0

| accepted

Answered
How do I get MATLAB to output a digital marker via the parallel port to Biopac's Acqknowledge software?
Take a look at "digitalio" in the Data Acquisition Toolbox. Here's a short example code: % Initialize 2 lines (2nd line res...

mer än 12 år ago | 0

| accepted