نتایج جستجو برای: fuzzy integral inequality

تعداد نتایج: 257369  

Journal: :Inf. Sci. 2012
Chao-Ming Hwang Miin-Shen Yang Wen-Liang Hung Ming-Gay Lee

Similarity measures of intuitionistic fuzzy sets are used to indicate the similarity degree between intuitionistic fuzzy sets. Although several similarity measures for intuitionistic fuzzy sets have been proposed in previous studies, no one has considered the use of the Sugeno integral to define them. Since the Sugeno integral provides an expected-value-like operation, it can be a useful tool i...

2009
Wen-Jer Chang Wei Chang Cheung-Chieh Ku

This paper deals with the fuzzy based H∞ control problem for time-delay affine Takagi-Sugeno (T-S) fuzzy models. A class of nonlinear time-delay systems is approximated by a time-delay affine T-S fuzzy model in this paper. Based on LyapunovRazumikhin theorem and S-procedure, the stability and stabilization problems are solved by employing a Parallel Distributed Compensation (PDC) type H∞ fuzzy ...

2011
Hong Wang Kelong Zheng

Various singular integral inequalities play an important role in the development of the theory of differential equations, functional differential equations, and integral equations. For example, Henry 1 proposed a linear integral inequality with singular kernel to investigate some qualitative properties for a parabolic differential equation, and Sano and Kunimatsu 2 gave a modified version of He...

Abbas Hasankhani, Akbar Nazari, Morteza Saheli

In the present paper we define the notion of fuzzy inner productand study the properties of the corresponding fuzzy norm. In particular, it isshown that the Cauchy-Schwarz inequality holds. Moreover, it is proved thatevery such fuzzy inner product space can be imbedded in a complete one andthat every subspace of a fuzzy Hilbert space has a complementary subspace.Finally, the notions of fuzzy bo...

1993
Robert Fullér Hans-Jürgen Zimmermann

We interpret fuzzy linear programming (FLP) problems with fuzzy coefficients and fuzzy inequality relations as multiple fuzzy reasoning schemes (MFR), where the antecedents of the scheme correspond to the constraints of the FLP problem and the fact of the scheme is the objective of the FLP problem. Then the solution process consists of two steps: first, for every decision variable x ∈ IRn, we c...

2014
A. M. Mane T. D. Dongale M. S. Bapat

The present paper discusses an application of fuzzy measure and corresponding fuzzy integral for the evaluation of students failure reasons. From the result it is clearly seen that Choquet Integral has a good choice in Decision making.

2005
Biljana Mihailović Endre Pap Neboǰsa Ralević

This paper provides a discussion on difference representations of the asymmetric Choquet integral with respect to a signed fuzzy measure with bounded chain variation. There are given difference representations of the Choquet integral with respect to a signed fuzzy measure based on its representation as difference of two fuzzy measures.

2017
L. DI V. MARRAFFA

In this paper we study the Pettis integral of fuzzy mappings in arbitrary Banach spaces. We present some properties of the Pettis integral of fuzzy mappings and we give conditions under which a scalarly integrable fuzzy mapping is Pettis integrable. Cordially dedicated to Professor Paolo de Lucia on the occasion of his 80-th birthday with esteem and admiration

Journal: :Computers & Mathematics with Applications 2000

نمودار تعداد نتایج جستجو در هر سال

با کلیک روی نمودار نتایج را به سال انتشار فیلتر کنید

function paginate(evt) { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term pg=parseInt(evt.target.text) var data={ "year":filter_year, "term":term, "pgn":pg } filtered_res=post_and_fetch(data,url) window.scrollTo(0,0); } function update_search_meta(search_meta) { meta_place=document.getElementById("search_meta_data") term=search_meta.term active_pgn=search_meta.pgn num_res=search_meta.num_res num_pages=search_meta.num_pages year=search_meta.year meta_place.dataset.term=term meta_place.dataset.page=active_pgn meta_place.dataset.num_res=num_res meta_place.dataset.num_pages=num_pages meta_place.dataset.year=year document.getElementById("num_result_place").innerHTML=num_res if (year !== "unfilter"){ document.getElementById("year_filter_label").style="display:inline;" document.getElementById("year_filter_place").innerHTML=year }else { document.getElementById("year_filter_label").style="display:none;" document.getElementById("year_filter_place").innerHTML="" } } function update_pagination() { search_meta_place=document.getElementById('search_meta_data') num_pages=search_meta_place.dataset.num_pages; active_pgn=parseInt(search_meta_place.dataset.page); document.getElementById("pgn-ul").innerHTML=""; pgn_html=""; for (i = 1; i <= num_pages; i++){ if (i===active_pgn){ actv="active" }else {actv=""} pgn_li="
  • " +i+ "
  • "; pgn_html+=pgn_li; } document.getElementById("pgn-ul").innerHTML=pgn_html var pgn_links = document.querySelectorAll('.mypgn'); pgn_links.forEach(function(pgn_link) { pgn_link.addEventListener('click', paginate) }) } function post_and_fetch(data,url) { showLoading() xhr = new XMLHttpRequest(); xhr.open('POST', url, true); xhr.setRequestHeader('Content-Type', 'application/json; charset=UTF-8'); xhr.onreadystatechange = function() { if (xhr.readyState === 4 && xhr.status === 200) { var resp = xhr.responseText; resp_json=JSON.parse(resp) resp_place = document.getElementById("search_result_div") resp_place.innerHTML = resp_json['results'] search_meta = resp_json['meta'] update_search_meta(search_meta) update_pagination() hideLoading() } }; xhr.send(JSON.stringify(data)); } function unfilter() { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":"unfilter", "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } function deactivate_all_bars(){ var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(bar) { bar.dataset.active = false bar.style = "stroke:#71a3c5;" }) } year_chart.on("created", function() { var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(check) { check.addEventListener('click', checkIndex); }) }); function checkIndex(event) { var yrchart = document.querySelectorAll('.ct-bar'); var year_bar = event.target if (year_bar.dataset.active == "true") { unfilter_res = unfilter() year_bar.dataset.active = false year_bar.style = "stroke:#1d2b3699;" } else { deactivate_all_bars() year_bar.dataset.active = true year_bar.style = "stroke:#e56f6f;" filter_year = chart_data['labels'][Array.from(yrchart).indexOf(year_bar)] url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":filter_year, "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } } function showLoading() { document.getElementById("loading").style.display = "block"; setTimeout(hideLoading, 10000); // 10 seconds } function hideLoading() { document.getElementById("loading").style.display = "none"; } -->