Khalid Tewfik
Followers: 0 Following: 0
Estadística
10 Preguntas
0 Respuestas
CLASIFICACIÓN
274.683
of 295.638
REPUTACIÓN
0
CONTRIBUCIONES
10 Preguntas
0 Respuestas
ACEPTACIÓN DE RESPUESTAS
50.0%
VOTOS RECIBIDOS
0
CLASIFICACIÓN
of 20.255
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 154.207
CONTRIBUCIONES
0 Problemas
0 Soluciones
PUNTUACIÓN
0
NÚMERO DE INSIGNIAS
0
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Pregunta
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...
casi 7 años hace | 1 respuesta | 0
1
respuestaPregunta
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...
casi 8 años hace | 1 respuesta | 0
1
respuestaPregunta
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...
casi 8 años hace | 1 respuesta | 0
1
respuestaPregunta
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
alrededor de 8 años hace | 1 respuesta | 0
1
respuestaPregunta
I have an excel file with 5 columns X1/X2/X3/X4/X5 how to I plot 4 plots (X1,X2;X1,X3;X1;X4;X1;X5) on the same figure using the subplot command.
Do I use xlsread
alrededor de 8 años hace | 1 respuesta | 0
1
respuestaPregunta
How do I write a function called mystaff that takes one matrix input argument S, S is a n-by-m matrix from an excel file I have saved. Also the function doesn't return anything
Here's what I have filename = 'Salaries.xlsx'; FR = xlsread('Salaries.xlsx');
alrededor de 8 años hace | 1 respuesta | 0
1
respuestaPregunta
Write a function called mystaff that takes one input matrix called S. S is an n-by-m matrix whose elements are salaries. Salaries.xlsx Doesn't return a value How do I use my function to find average salary of principe: principle >= 140000.
Here's what I have so far filename = 'Salaries.xlsx'; S = xlsread('Salaries.xlsx') function mystaff(S) if nargin~=1 ...
alrededor de 8 años hace | 1 respuesta | 0
1
respuestaPregunta
Write a function with one input integer argument that returns an output matrix(MQ) which is a 2n by 2n matrix. MQ consist of 4 n-by-n submatrices top left are all ones top right corner are all 2's bottom left are 3's and bottom right are 4's
function [MQ] = myquadrants(n) I don't know how to set up the matrix
alrededor de 8 años hace | 1 respuesta | 0
1
respuestaPregunta
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...
alrededor de 8 años hace | 1 respuesta | 0
1
respuestaPregunta
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
alrededor de 8 años hace | 3 respuestas | 0