photo

ARAH MIZORI


Last seen: alrededor de 1 mes hace Con actividad desde 2021

Followers: 0   Following: 0

Estadística

MATLAB Answers

8 Preguntas
0 Respuestas

CLASIFICACIÓN
198.612
of 300.338

REPUTACIÓN
0

CONTRIBUCIONES
8 Preguntas
0 Respuestas

ACEPTACIÓN DE RESPUESTAS
75.0%

VOTOS RECIBIDOS
0

CLASIFICACIÓN
 of 20.922

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN

of 168.149

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

  • Thankful Level 3

Ver insignias

Feeds

Ver por

Pregunta


How can I write a magic(5) matrix to a text file with special delimiters?
I want to a matrix in txt for with the delimeter %%%

alrededor de 4 años hace | 1 respuesta | 0

1

respuesta

Pregunta


How can I run this script and only create folders with files in it without having an additional file outside the folder?
clc clear close all % start timer start = tic; % input n and m n = input('\n How many folders would you like m...

alrededor de 4 años hace | 1 respuesta | 0

1

respuesta

Pregunta


I want to find the inverse of my function 'mag' and plot it as 'mag1'
clc clear close all subplot(2,1,1); theta = 0:0.01:2*pi; mag = sin(3*theta); polarplot(mag) title('Fan-Blade Polar Plot')...

alrededor de 4 años hace | 1 respuesta | 0

1

respuesta

Pregunta


How can I make a variable equal a script in Matlab
I want to make this script: c = 4500:30:7500; first = 0:150; second = 150:250; third = 250:325; x = 0.2*first; y = c...

alrededor de 4 años hace | 0 respuestas | 0

0

respuestas

Pregunta


How do I only display the 5 answers in the command window once?
function [SA]=equTriPrismSurfArea(s,h) SA = ((sqrt(3)./2) .* s.^2 + 3.*s.*h); end s = [1 2 3 4 5]; h = [1 2 3 4 5]; ...

alrededor de 4 años hace | 1 respuesta | 0

1

respuesta

Pregunta


How do I only result in 5 answers (I want the matrix to times 1 by 1 and 2 by 2 and 3 by 3 etc. not 1 by 1 and 1 by 2 and 1 by 3 etc.)
s = 1; s1 = input('Enter the number of columns : '); h = 1; h1 = input('Enter the number of columns : '); for p ...

alrededor de 4 años hace | 0 respuestas | 0

0

respuestas

Pregunta


Why do I receive Not enough input arguments?
function [SA]=equTriPrismSurfArea(s,h) SA=((sqrt(3)/2)*(s^2))+(3*s*h); s = 1; h = 1; for i = 1:5 ...

alrededor de 4 años hace | 3 respuestas | 0

3

respuestas

Pregunta


Why doesn't my script work? It comes back with Error: File: equTriPrismSurfArea.m Line: 6 Column: 1 This statement is not inside any function.
function [SA]=equTriPrismSurfArea(s,h) SA=((sqrt(3)/2)*(s^2))+(3*s*h); end s = [1 2 3 4 5]; h = [1 2 3 4 5]; for i...

alrededor de 4 años hace | 1 respuesta | 0

1

respuesta