Andrew Reibold
Purdue University
Followers: 0 Following: 0
Professional Interests: Aerospace Engineering
Feeds
已回答
How to calculate max permanent flux linkage and rotor angle over which back emf is constant for a BLDC?
To simulate a BLDC motor control circuit in MATLAB, you'll need to understand and calculate certain parameters. The maximum flux...
How to calculate max permanent flux linkage and rotor angle over which back emf is constant for a BLDC?
To simulate a BLDC motor control circuit in MATLAB, you'll need to understand and calculate certain parameters. The maximum flux...
11 months 前 | 0
| 已接受
已回答
How can I save axes data for recall without keeping the handle?
To achieve the desired behavior in MATLAB, you can follow these steps: Create a single figure with the initial plot. Allow the...
How can I save axes data for recall without keeping the handle?
To achieve the desired behavior in MATLAB, you can follow these steps: Create a single figure with the initial plot. Allow the...
11 months 前 | 0
已回答
Why is the relationship between Es/N0 and SNR different for complex and real signals
Your explanation is quite accurate, and your understanding is correct. The factor of 0.5 in the formula for real input signals i...
Why is the relationship between Es/N0 and SNR different for complex and real signals
Your explanation is quite accurate, and your understanding is correct. The factor of 0.5 in the formula for real input signals i...
11 months 前 | 0
已回答
OQPSK modulation / demodulation errors
It seems like there might be a couple of issues in your code. 1. BitInput/BitsPerSymbol Mismatch: You have set 'BitInput...
OQPSK modulation / demodulation errors
It seems like there might be a couple of issues in your code. 1. BitInput/BitsPerSymbol Mismatch: You have set 'BitInput...
11 months 前 | 0
已解决
Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...
10 years 前
提问
Matlab Home License - New Computer?
If I purchase a Matlab Home, it says I can use it forever. I want to get a copy but my laptop is getting old and in the next y...
10 years 前 | 1 个回答 | 0
1
个回答提问
fft - Documentation Question - What is "L"?
Referring to this documentation http://www.mathworks.com/help/matlab/ref/fft.html What is L? L = 1000; ...
10 years 前 | 1 个回答 | 0
1
个回答已回答
break loop when answer is same as last answer
The reason it is failing - Matlab does NOT accept ZERO indices. The very first value of x is x(1), not x(0). Your script calls f...
break loop when answer is same as last answer
The reason it is failing - Matlab does NOT accept ZERO indices. The very first value of x is x(1), not x(0). Your script calls f...
10 years 前 | 0
已回答
creating new number from two numbers
Judging by your example, I believe you mean b *repeated* a times. Not a times b. Yes there is a command for that. repmat...
creating new number from two numbers
Judging by your example, I believe you mean b *repeated* a times. Not a times b. Yes there is a command for that. repmat...
10 years 前 | 0
| 已接受
已回答
Count the time a toggle button is pressed down
I use *tic* and *toc* to start and stop timers >> help tic tic Start a stopwatch timer. tic and TOC functions wo...
Count the time a toggle button is pressed down
I use *tic* and *toc* to start and stop timers >> help tic tic Start a stopwatch timer. tic and TOC functions wo...
10 years 前 | 0
提问
Can you fold a highlighted selection of code?
I have enabled cell folding with the double percent signs, %%. I can click each individual +/- on the left hand side of my sc...
10 years 前 | 1 个回答 | 3
1
个回答提问
Is it possible to refresh a web page I opened with Matlab?
Example: I open a webpage using [stat,h] = web('www.cnn.com') and I need to refresh it every 10 seconds. Is there a comman...
10 years 前 | 1 个回答 | 0
1
个回答已回答
??? Undefined variable "handles" or class "handles.slider1". in Guide for a function
Notice in all the other functions you pass in *handles* which allows you to access the data inside slider1_Callback(hObject...
??? Undefined variable "handles" or class "handles.slider1". in Guide for a function
Notice in all the other functions you pass in *handles* which allows you to access the data inside slider1_Callback(hObject...
10 years 前 | 0
| 已接受
已回答
How to break with two conditions
Instead of *AND*, use *&&* if m(:,:,j) < 0 && m2m(:,:,j) < 0 'AND' will not work. Make that change and start debugging f...
How to break with two conditions
Instead of *AND*, use *&&* if m(:,:,j) < 0 && m2m(:,:,j) < 0 'AND' will not work. Make that change and start debugging f...
10 years 前 | 0
已回答
Looking to animate two lines with the angle between them changing?
Bro, If you are working with EMG signals you should really know how to do Highschool trig... haha :-) But anyway, here is an ...
Looking to animate two lines with the angle between them changing?
Bro, If you are working with EMG signals you should really know how to do Highschool trig... haha :-) But anyway, here is an ...
10 years 前 | 0
已回答
Replacing cells in a cell array/Dealing with AM and PM using datenum
I'm really confused as to why you have *Data{1,3}{i,1}* for the first assignment, and *Data{3,i}{i,1}* for the second one. Shou...
Replacing cells in a cell array/Dealing with AM and PM using datenum
I'm really confused as to why you have *Data{1,3}{i,1}* for the first assignment, and *Data{3,i}{i,1}* for the second one. Shou...
10 years 前 | 0
已回答
Creating a table of values from for loops
_I apologize for posting this as a comment._ This will make a table of your values, without the labels on the sides. I guess ...
Creating a table of values from for loops
_I apologize for posting this as a comment._ This will make a table of your values, without the labels on the sides. I guess ...
10 years 前 | 0
已回答
Delete rows that have the first same value and keep one row in matrix with 2 colums?
This removes any rows where the value in the first column has already been used. [~,idx] = unique(x(:,1)); %which row...
Delete rows that have the first same value and keep one row in matrix with 2 colums?
This removes any rows where the value in the first column has already been used. [~,idx] = unique(x(:,1)); %which row...
10 years 前 | 1
已回答
Modifying this code to make a cell array?
sizegroup=input('Enter number of students: '); for k = 1:sizegroup name=input('enter name: ', 's'); %read in name ...
Modifying this code to make a cell array?
sizegroup=input('Enter number of students: '); for k = 1:sizegroup name=input('enter name: ', 's'); %read in name ...
10 years 前 | 0
| 已接受
已回答
overwriting certain lines in a matrix with previous lines that satisfy a condition.
This is not the most efficient memory-wise, but it is a working solution and I tried to use basic commands. I just made up a mat...
overwriting certain lines in a matrix with previous lines that satisfy a condition.
This is not the most efficient memory-wise, but it is a working solution and I tried to use basic commands. I just made up a mat...
10 years 前 | 0
已回答
Function outputs the top row of a matrix, need it to output whole matrix
You have a counter here, but its not actually in a loop. I'm guessing thats a mistake. Count only ever equals 1 during assig...
Function outputs the top row of a matrix, need it to output whole matrix
You have a counter here, but its not actually in a loop. I'm guessing thats a mistake. Count only ever equals 1 during assig...
10 years 前 | 0
已回答
quiver plot - need help to remove NaN
This solution removes the black dots! The reason it looked awful after removing NaNs is because instead of just taking the no...
quiver plot - need help to remove NaN
This solution removes the black dots! The reason it looked awful after removing NaNs is because instead of just taking the no...
10 years 前 | 2
| 已接受
已回答
How to skip lines when reading a text file that start with specific input?
Hi Marian, Maybe this can get you started. I made a textfile of the example you provided, and a sample code is attached to re...
How to skip lines when reading a text file that start with specific input?
Hi Marian, Maybe this can get you started. I made a textfile of the example you provided, and a sample code is attached to re...
10 years 前 | 2
| 已接受
已回答
Table header - possible to use special characters?
I don't know if it actually works: Try using sprintf to print what text you want
Table header - possible to use special characters?
I don't know if it actually works: Try using sprintf to print what text you want
10 years 前 | 0
已回答
How to have variables displayed in workspace after every while loop iteration?
Not sure if you are having issues with the worksplace, or if you are actually trying to say you are having trouble displaying va...
How to have variables displayed in workspace after every while loop iteration?
Not sure if you are having issues with the worksplace, or if you are actually trying to say you are having trouble displaying va...
10 years 前 | 0
已回答
How to output WHOLE vector in result?
You need to tell Matlab where to store both output arguments or it only gives the first one under the variable 'ans' by default ...
How to output WHOLE vector in result?
You need to tell Matlab where to store both output arguments or it only gives the first one under the variable 'ans' by default ...
10 years 前 | 3
已回答
Help with basic problem
steps_required = ceil(((B-.2)-A)/C) Explanation: Assuming you want to take the minimum amount of steps, the distance you MUS...
Help with basic problem
steps_required = ceil(((B-.2)-A)/C) Explanation: Assuming you want to take the minimum amount of steps, the distance you MUS...
10 years 前 | 0
提问
Is it possible to disable plot/figure generation in an entire script?
This is more of a trivial request, but it would be convenient for me if there was a setting I could change before running a scri...
10 years 前 | 1 个回答 | 0
1
个回答已回答
how can i stop while loop immediately by a push button?
I think you need to make sure 'Interupt' is set to 'Enabled' or 'On' or something like that. Is it possible?
how can i stop while loop immediately by a push button?
I think you need to make sure 'Interupt' is set to 'Enabled' or 'On' or something like that. Is it possible?
10 years 前 | 0
已回答
Mathlab R2013a Student bug
Technical support from MathWorks is available for activation, installation, and bug-related issues http://www.mathworks.com/...
Mathlab R2013a Student bug
Technical support from MathWorks is available for activation, installation, and bug-related issues http://www.mathworks.com/...
10 years 前 | 0