Can ables to view the plot in Matlab

for eps_c=0.000001:eps_cu
disp(eps_c);
x=eps_cu/eps_c;
fc=fcc*x*r/(r-1+x);
disp(fc);
end
% plotting graph for compressive stress-strain curve
figure
plot(eps_c,fc);
xabel('Compressive Strain')
ylabel('Compressive stress')

Answers (1)

I don't see why your using a loop (just vectorize using element wise operation) but try the below:
Note: You haven't provided the details of some variables eps_cu...
eps_c=0.000001:eps_cu;
x=eps_cu./eps_c;
fc=fcc.*x.*r./(r-1+x);
% plotting graph for compressive stress-strain curve
figure
plot(eps_c,fc);
xabel('Compressive Strain')
ylabel('Compressive stress')

This question is closed.

Asked:

on 21 Feb 2019

Closed:

on 20 Aug 2021

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!