n range between 1 to 7 and d's range between 1 to 100. how to solve it?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
ABHISEK MOHANTY
el 9 de Feb. de 2015
Comentada: Star Strider
el 9 de Feb. de 2015
clc
clear all
n=[1:.0001:7];
d= ?? ;
[a]=d*n; display([a]
0 comentarios
Respuesta aceptada
Star Strider
el 9 de Feb. de 2015
I’m not certain what you want to do, but this may be one approach:
n = [1:.0001:7];
d = linspace(1, 100, length(n));
a = n.*d;
2 comentarios
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!