Community Profile

photo

Bob


Active since 2014

Followers: 0   Following: 0

Message

Statistics

  • Thankful Level 3

View badges

Feeds

View by

Question


Matlab Data Acquisition Toolbox Error with NI USB-6002
I am currently trying to use the Matlab Data Acquisition Toolbox with the National Instruments USB-6002. I am using Matlab versi...

9 years ago | 1 answer | 0

1

answer

Question


How do I make a plot background black?
I have two vectors. x=[1 2 3 4 5]; y=[10 20 30 40 50]; I plotted the vectors plot(x,y) The default background of ...

9 years ago | 3 answers | 2

3

answers

Question


Using a for loop for legend plots
I was able to make each point a different color in my plot. I want to do the same thing for the legend. How can I put the legen...

9 years ago | 1 answer | 0

1

answer

Question


Using a for loop and Using fprintf with a mixture of numbers and text in a table
I have the following array: A=[1; 2; 3; 4]; I then make an array B: B=[] I then use a for loop to assign eac...

9 years ago | 1 answer | 0

1

answer

Question


Using fprintf with a mixture of numbers and text in a table
I have the following 2 arrays. A=[1; 2; 3; 4]; B=['green';'blue';'black';'yellow]; I want to use fprintf to to have A a...

9 years ago | 1 answer | 0

1

answer

Question


I need help using the quad function
When using the quad function to integrate, I am getting the error: FUN must be a function, a valid string expression, or an ...

9 years ago | 1 answer | 0

1

answer

Question


Problem using polyfit and syms in a for loop
Here is my code. Z=[3 1]; for i=1:length(Z); syms a x=5*a-Z(:,i) A(i)=solve(x,a); syms b y=3*a+Z(:,i) ...

9 years ago | 0 answers | 0

0

answers

Question


Problems using polyfit in a for loop
I am getting an error when I try to run this polyfit. I think the problem is the values I am putting for xfit1 in the polyfit fo...

9 years ago | 1 answer | 0

1

answer

Question


Changing Colors in a Plot Using a For Loop
Here is my code. Z=[3 1 7]; for i=1:length(Z); A(i)=Z(i)+2 B(i)=Z(i)-7 C(i)=Z(i)+4 col=[...

9 years ago | 1 answer | 0

1

answer

Question


Concatenate Three Row Vectors into an Array in a For Loop
What is wrong with my code? Z=[3 8 2 4]; N=length(z); A(i)=5*Z(i); for i=1:N B(i)=A(i); C(i)...

9 years ago | 1 answer | 0

1

answer

Question


Making Multiple Plots Using a For Loop
I have the matrix A A=[1 5 7 8; 4 3 2 3; 5 8 7 1] For all of the plots, the x axis range is x=[1 2 3 4] I need to have ...

9 years ago | 1 answer | 0

1

answer

Question


Creating a column vector for each variable in a for loop?
Here is my code: D=[1 4 7 5]; for i=1:length(D) A=D(1,i) B=A+3 C=B-5 end How do I cr...

9 years ago | 1 answer | 0

1

answer