Finding radius of sphere and circle
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hello! So i'm trying to find the values of radius of a sphere and a circle from their formulas of area and volume.I want my_eval_parameter function to have as arguments the area of the circle (E_C) and the volume of the sphere (E_V) and I want my function to be called back with this way:
[rad1, rad2] = my_eval_parameters(E_C,V_S);
This is the code that I've managed to write:
function my_eval_paramereters=calculations(rad1,rad2)
E_C = input('enter value for E_C:...');
rad1 = pi*(rad1*rad1);
rad2 = input('enter value for V_S:... ');
rad2(rad2) = (4/3)*pi*(rad2^3);
[rad1, rad2] = my_eval_parameters(E_C,rad2);
end
0 comentarios
Respuestas (3)
Ahmed raafat
el 22 de En. de 2022
change the output name and write my_eval_parameters code
and change your function code into
function [rad1,rad2]=calculations(rad1,rad2)
2 comentarios
VBBV
el 12 de Abr. de 2025
Movida: VBBV
el 12 de Abr. de 2025
@Nick Vasilakis You can change the code structure as follows, since you would need a recursive function
function calculations(rad1, rad2)
E_C = input('enter value for E_C:...');
%rad1 = pi*(rad1*rad1);
E_V = input('enter value for V_S:... ');
%rad2 = (4/3)*pi*(rad2^3);
[rad1, rad2] = my_eval_parameters(E_C,E_V);
calculations(rad1,rad2)
end
function [rad1, rad2] = my_eval_parameters(E_C,E_V)
rad1 = sqrt(E_C/pi)
rad2 = ((3*E_V)/(4*pi))^(1/3)
end
%E_C = input('enter value for E_C:...');rad1 = pi*(rad1*rad1);rad2 = input('enter value for V_S:... ');rad2(rad2) = (4/3)*pi*(rad2^3);[rad1, rad2] = my_eval_parameters(E_C,rad2);end
1 comentario
VBBV
el 12 de Abr. de 2025
hopefully you know a way to stop the recursion. In most cases you need a break statement
inside calculations function.
Ver también
Categorías
Más información sobre Surface and Mesh Plots 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!