필터 지우기
필터 지우기

Calculation of a sum with variable values from textbox prompt

조회 수: 4 (최근 30일)
sverre Kvist
sverre Kvist 2023년 9월 4일
편집: Matt J 2023년 9월 4일
Hi,
I'm looking to get an user input on amount of Resistors, then make an array with that number. Then make a prompt with an input for each resistor value, to be added to the array.
My concrete question is in regards to the prompting, how do i get multiple edit fields in the promt, and connect them to the array,
also accept suggestions for the summing too.
Formula i wish to calculate:
Code so far:
clc, clear, close all;
prompt = {'Enter number of resistors:'};
dlgtitle = 'Number of resistors';
dims = [1 35];
definput = {'1'};
Resistors = inputdlg(prompt,dlgtitle,dims,definput);
R_array = zeros(1,str2double(Resistors(1)))
  댓글 수: 3
Dyuman Joshi
Dyuman Joshi 2023년 9월 4일
"how do i get multiple edit fields in the promt"
Refer to the documentation page of inputdlg on how to get multiple inputs.
You will get the inputs in the form of a cell array, manipulate them according to your requirements.
sverre Kvist
sverre Kvist 2023년 9월 4일
Thank you for the feedback.
I figured out a way. For reference if other people have the same, or similar question:
prompt = {'Resistors in paralell:'};
dlgtitle = 'Number of resistors';
dims = [1 35];
definput = {'1'};
Resistors = inputdlg(prompt,dlgtitle,dims,definput);
R_array = zeros(1,str2double(Resistors(1)));
for i=1:numel(R_array)
temparr{i} = "Resistor";
end
x = inputdlg(temparr);
sum = 0;
for i=1:numel(x)
sum = sum + (1/str2double(x{i}));
end
R_total = sum^-1

댓글을 달려면 로그인하십시오.

채택된 답변

Matt J
Matt J 2023년 9월 4일
편집: Matt J 2023년 9월 4일
Then make a prompt with an input for each resistor value
It shouldn't require multiple prompts,
nor a loop to do the summation:
>> x=inputdlg
x =
1×1 cell array
{'[1,2,3,4]'}
>> sum(str2num(x{1}))
ans =
10

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Array Geometries and Analysis에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by