n range between 1 to 7 and d's range between 1 to 100. how to solve it?
1 view (last 30 days)
Show older comments
ABHISEK MOHANTY
on 9 Feb 2015
Commented: Star Strider
on 9 Feb 2015
clc
clear all
n=[1:.0001:7];
d= ?? ;
[a]=d*n; display([a]
0 Comments
Accepted Answer
Star Strider
on 9 Feb 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 Comments
See Also
Categories
Find more on Logical in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!