Community Profile

photo

Khalid Tewfik


Active since 2016

Followers: 0   Following: 0

Statistics

  • Thankful Level 2
  • Thankful Level 1

View badges

Feeds

View by

Question


I have a simple question how do I save the outputs of my script to a vector
for t = -5:.2:50 if (t > 0) && (t <= 10) vel = 11*t^2 - 5*t; elseif (t >= 10) && (t <= 20) vel = 1100...

6 years ago | 1 answer | 0

1

answer

Question


Simple question how do I adjust the for loop to go through the rows of the excel matrix one by one. Milesdriven adds the columns 2:11 of the first row, i want the calculation to be done for the next 54 rows as well.
filename = 'project3data.xlsx'; num = xlsread('project3data.xlsx'); for i = 1:55 milesdriven = sum(num(2,2:11)) e...

7 years ago | 1 answer | 0

1

answer

Question


how do I get i to loop through the 55 columns of the excel file one by one. I want i to correspond to the values of the 55 columns to calculate miles driven
filename = 'project3data.xlsx'; num = xlsread('project3data.xlsx'); for i = 1:55 milesdriven = sum(nu...

7 years ago | 1 answer | 0

1

answer

Question


Best way to write this function in matlab while using eps in the denominator to avoid zero
Here's what I had z = (xx.*yy.*(xx.^2-yy.^2))/(eps(xx.^2+yy.^2)); but I kept getting a rank deficient error

7 years ago | 1 answer | 0

1

answer

1

answer

1

answer

Question


I'm writing a function where I've called the script AngleA and the function written below works fine to find AngleA but when I write a similar code for AngleB it says that AngleB isn't defined how do I define the variable or fix the error?
function [A] = AngleA(a,b,c) AngleA = acosd((b^2 + c^2 - a^2)/(2*b*c)) function [B] = AngleB(a,b,c) AngleB = acosd((a^2 + c...

7 years ago | 1 answer | 0

1

answer

Question


How do I write the following functions on Matlab x(t) = 2tcos(pi*t) , y(t) = 2sin(pi*t)
I keep getting error using * and other errors

7 years ago | 3 answers | 0

3

answers